From 97316ce1e82be573a708b0e46d863e9add4fb660 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 15 Feb 2024 20:25:21 -0500 Subject: [PATCH 1/5] fix: asm strings can be concatenated --- grammar.js | 2 +- test/corpus/declarations.txt | 46 ++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index ba91dfd..7144f6e 100644 --- a/grammar.js +++ b/grammar.js @@ -1155,7 +1155,7 @@ module.exports = grammar({ gnu_asm_clobber_list: $ => seq( ':', - commaSep(field('register', $.string_literal)), + commaSep(field('register', $._string)), ), gnu_asm_goto_list: $ => seq( diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 1d182ff..92874fc 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1117,3 +1117,49 @@ struct __attribute__((__packed__)) foo_t { (field_declaration (primitive_type) (field_identifier))))) + +================================================================================ +More Assembly +================================================================================ + +int main() { + int var; + __asm__( + "nop;" + : [var] "=r"(var) + : + : "eax", "ra" "x" + ); +} + +-------------------------------------------------------------------------------- + +(translation_unit + (function_definition + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement + (declaration + (primitive_type) + (identifier)) + (expression_statement + (gnu_asm_expression + (string_literal + (string_content)) + (gnu_asm_output_operand_list + (gnu_asm_output_operand + (identifier) + (string_literal + (string_content)) + (identifier))) + (gnu_asm_input_operand_list) + (gnu_asm_clobber_list + (string_literal + (string_content)) + (concatenated_string + (string_literal + (string_content)) + (string_literal + (string_content))))))))) From c1610d7c9920e86c7227cababbcafdfde1f4fd0e Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 15 Feb 2024 20:43:09 -0500 Subject: [PATCH 2/5] fix: ternary consequences can have comma expressions --- grammar.js | 2 +- test/corpus/expressions.txt | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/grammar.js b/grammar.js index 7144f6e..12b3aae 100644 --- a/grammar.js +++ b/grammar.js @@ -959,7 +959,7 @@ module.exports = grammar({ conditional_expression: $ => prec.right(PREC.CONDITIONAL, seq( field('condition', $._expression), '?', - optional(field('consequence', $._expression)), + optional(field('consequence', choice($._expression, $.comma_expression))), ':', field('alternative', $._expression), )), diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index be02ff7..e2e05e7 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -719,7 +719,7 @@ int main() { (sizeof_expression (parenthesized_expression (number_literal))) - (number_literal))) + (number_literal))) (expression_statement (sizeof_expression (parenthesized_expression @@ -818,7 +818,7 @@ int main() { (offsetof_expression (type_descriptor (type_identifier)) - (field_identifier))) + (field_identifier))) (expression_statement (binary_expression (offsetof_expression @@ -1322,6 +1322,7 @@ Ternary void f() { 0 ? 1 : 2; a = 0 ? 1 : 2; + a = val ? b = 3, 1 : 0; } -------------------------------------------------------------------------------- @@ -1344,6 +1345,17 @@ void f() { (conditional_expression (number_literal) (number_literal) + (number_literal)))) + (expression_statement + (assignment_expression + (identifier) + (conditional_expression + (identifier) + (comma_expression + (assignment_expression + (identifier) + (number_literal)) + (number_literal)) (number_literal))))))) ================================================================================ From 285aa99bf0eaf003a66e24243ffd936fa66a11ac Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 15 Feb 2024 20:43:21 -0500 Subject: [PATCH 3/5] fix: allow ms pointer modifiers in abstract pointer declarators --- grammar.js | 1 + test/corpus/declarations.txt | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/grammar.js b/grammar.js index 12b3aae..5e51e68 100644 --- a/grammar.js +++ b/grammar.js @@ -453,6 +453,7 @@ module.exports = grammar({ field('declarator', $._type_declarator), ))), abstract_pointer_declarator: $ => prec.dynamic(1, prec.right(seq('*', + repeat($.ms_pointer_modifier), repeat($.type_qualifier), field('declarator', optional($._abstract_declarator)), ))), diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 92874fc..c4a48da 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -827,6 +827,9 @@ extern int strerror_r(int __errnum, char *__buf, "__xpg_strerror_r") __attribute__((__nothrow__)) __attribute__((__nonnull__(2))); +extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict, + __gnuc_va_list); + int f([[a::b(c), d]] int x) {} [[gnu::always_inline]] [[gnu::hot]] [[gnu::const]] [[nodiscard]] @@ -955,6 +958,25 @@ struct __attribute__((__packed__)) foo_t { (identifier) (argument_list (number_literal))))))) + (declaration + (storage_class_specifier) + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (type_identifier) + (abstract_pointer_declarator + (ms_pointer_modifier + (ms_restrict_modifier)))) + (parameter_declaration + (type_qualifier) + (primitive_type) + (abstract_pointer_declarator + (ms_pointer_modifier + (ms_restrict_modifier)))) + (parameter_declaration + (type_identifier))))) (function_definition (primitive_type) (function_declarator From eb8800e8977ffe42c726216c1687bb0a63c17a27 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Fri, 16 Feb 2024 18:32:15 -0500 Subject: [PATCH 4/5] fix: ms call modifier missing in some spots --- grammar.js | 9 ++++++- test/corpus/microsoft.txt | 49 +++++++++++++++++++++++++++++++++++++-- 2 files changed, 55 insertions(+), 3 deletions(-) diff --git a/grammar.js b/grammar.js index 5e51e68..f5450d7 100644 --- a/grammar.js +++ b/grammar.js @@ -231,6 +231,7 @@ module.exports = grammar({ function_definition: $ => seq( optional($.ms_call_modifier), $._declaration_specifiers, + optional($.ms_call_modifier), field('declarator', $._declarator), field('body', $.compound_statement), ), @@ -247,6 +248,7 @@ module.exports = grammar({ $._declaration_specifiers, commaSep1(field('declarator', choice( seq( + optional($.ms_call_modifier), $._declaration_declarator, optional($.gnu_asm_expression), ), @@ -398,21 +400,25 @@ module.exports = grammar({ parenthesized_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._declarator, ')', )), parenthesized_field_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._field_declarator, ')', )), parenthesized_type_declarator: $ => prec.dynamic(PREC.PAREN_DECLARATOR, seq( '(', + optional($.ms_call_modifier), $._type_declarator, ')', )), abstract_parenthesized_declarator: $ => prec(1, seq( '(', + optional($.ms_call_modifier), $._abstract_declarator, ')', )), @@ -468,7 +474,8 @@ module.exports = grammar({ $.identifier, alias($.preproc_call_expression, $.call_expression), )), - )), + ), + ), _function_declaration_declarator: $ => prec.right(1, seq( diff --git a/test/corpus/microsoft.txt b/test/corpus/microsoft.txt index 93c0ae8..0a85aec 100644 --- a/test/corpus/microsoft.txt +++ b/test/corpus/microsoft.txt @@ -166,6 +166,16 @@ __fastcall void mymethod(){ return; } +void __stdcall f() { } + +void (__stdcall g)() { } + +void __stdcall h(); + +void (__stdcall j()); + +typedef void(__stdcall *fp)(); + --- (translation_unit @@ -184,8 +194,43 @@ __fastcall void mymethod(){ declarator: (identifier) parameters: (parameter_list)) body: (compound_statement - (return_statement)))) - + (return_statement))) + (function_definition + type: (primitive_type) + (ms_call_modifier) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list)) + body: (compound_statement)) + (function_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (parenthesized_declarator + (ms_call_modifier) + (identifier)) + parameters: (parameter_list)) + body: (compound_statement)) + (declaration + type: (primitive_type) + declarator: (ms_call_modifier) + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list))) + (declaration + type: (primitive_type) + declarator: (parenthesized_declarator + (ms_call_modifier) + (function_declarator + declarator: (identifier) + parameters: (parameter_list)))) + (type_definition + type: (primitive_type) + declarator: (function_declarator + declarator: (parenthesized_declarator + (ms_call_modifier) + (pointer_declarator + declarator: (type_identifier))) + parameters: (parameter_list)))) ================================ SEH exception handling From 351528359f0adb0e2ba65c255c2f1ea4a8bd56cd Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Fri, 16 Feb 2024 18:01:48 -0500 Subject: [PATCH 5/5] chore: generate --- src/grammar.json | 108 +- src/node-types.json | 28 +- src/parser.c | 159400 +++++++++++++++++++++-------------------- 3 files changed, 82811 insertions(+), 76725 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 26af088..1a58695 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2721,6 +2721,18 @@ "type": "SYMBOL", "name": "_declaration_specifiers" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "declarator", @@ -2807,6 +2819,18 @@ { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declaration_declarator" @@ -2850,6 +2874,18 @@ { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declaration_declarator" @@ -3550,6 +3586,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_declarator" @@ -3571,6 +3619,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_field_declarator" @@ -3592,6 +3652,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_type_declarator" @@ -3613,6 +3685,18 @@ "type": "STRING", "value": "(" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_call_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_abstract_declarator" @@ -3850,6 +3934,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "ms_pointer_modifier" + } + }, { "type": "REPEAT", "content": { @@ -6445,8 +6536,17 @@ "type": "FIELD", "name": "consequence", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "comma_expression" + } + ] } }, { @@ -8057,7 +8157,7 @@ "name": "register", "content": { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" } }, { @@ -8074,7 +8174,7 @@ "name": "register", "content": { "type": "SYMBOL", - "name": "string_literal" + "name": "_string" } } ] diff --git a/src/node-types.json b/src/node-types.json index 85bcb85..f8e5d74 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -396,12 +396,16 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { "type": "_abstract_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } @@ -425,6 +429,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "ms_pointer_modifier", + "named": true + }, { "type": "type_qualifier", "named": true @@ -1185,6 +1193,10 @@ { "type": "_expression", "named": true + }, + { + "type": "comma_expression", + "named": true } ] } @@ -1227,6 +1239,10 @@ "type": "init_declarator", "named": true }, + { + "type": "ms_call_modifier", + "named": true + }, { "type": "parenthesized_declarator", "named": true @@ -1854,6 +1870,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "concatenated_string", + "named": true + }, { "type": "string_literal", "named": true @@ -2472,7 +2492,7 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -2486,6 +2506,10 @@ { "type": "_type_declarator", "named": true + }, + { + "type": "ms_call_modifier", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 19f43f5..6bbabed 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2300 -#define LARGE_STATE_COUNT 582 +#define STATE_COUNT 2423 +#define LARGE_STATE_COUNT 613 #define SYMBOL_COUNT 348 #define ALIAS_COUNT 3 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 127 +#define PRODUCTION_ID_COUNT 132 enum ts_symbol_identifiers { sym_identifier = 1, @@ -2641,71 +2641,76 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [58] = {.index = 89, .length = 1}, [59] = {.index = 90, .length = 2}, [60] = {.index = 92, .length = 1}, - [61] = {.index = 93, .length = 2}, - [62] = {.index = 95, .length = 3}, - [63] = {.index = 98, .length = 3}, - [64] = {.index = 101, .length = 2}, - [65] = {.index = 103, .length = 5}, - [66] = {.index = 108, .length = 3}, - [67] = {.index = 111, .length = 5}, - [68] = {.index = 116, .length = 2}, - [69] = {.index = 118, .length = 2}, - [70] = {.index = 120, .length = 3}, - [71] = {.index = 123, .length = 2}, - [72] = {.index = 125, .length = 2}, - [73] = {.index = 127, .length = 1}, - [74] = {.index = 128, .length = 2}, - [75] = {.index = 130, .length = 2}, - [76] = {.index = 132, .length = 2}, - [77] = {.index = 134, .length = 3}, - [78] = {.index = 137, .length = 2}, - [79] = {.index = 139, .length = 2}, - [80] = {.index = 141, .length = 2}, - [81] = {.index = 143, .length = 1}, - [82] = {.index = 144, .length = 2}, - [83] = {.index = 146, .length = 2}, - [84] = {.index = 148, .length = 4}, - [85] = {.index = 152, .length = 1}, - [86] = {.index = 153, .length = 2}, - [87] = {.index = 155, .length = 1}, - [88] = {.index = 156, .length = 1}, - [89] = {.index = 157, .length = 2}, - [90] = {.index = 159, .length = 2}, - [91] = {.index = 161, .length = 4}, - [92] = {.index = 165, .length = 5}, - [93] = {.index = 170, .length = 3}, - [94] = {.index = 173, .length = 2}, - [95] = {.index = 175, .length = 1}, - [97] = {.index = 176, .length = 2}, - [98] = {.index = 178, .length = 2}, - [99] = {.index = 180, .length = 2}, - [100] = {.index = 182, .length = 3}, - [101] = {.index = 185, .length = 2}, - [102] = {.index = 187, .length = 2}, - [103] = {.index = 189, .length = 2}, - [104] = {.index = 191, .length = 2}, - [105] = {.index = 193, .length = 3}, - [106] = {.index = 196, .length = 2}, - [107] = {.index = 198, .length = 1}, - [108] = {.index = 199, .length = 2}, - [109] = {.index = 201, .length = 2}, - [110] = {.index = 201, .length = 2}, - [111] = {.index = 203, .length = 3}, - [112] = {.index = 206, .length = 2}, - [113] = {.index = 208, .length = 1}, - [114] = {.index = 209, .length = 4}, - [115] = {.index = 213, .length = 3}, - [116] = {.index = 216, .length = 2}, - [117] = {.index = 218, .length = 2}, - [118] = {.index = 35, .length = 1}, - [119] = {.index = 220, .length = 5}, - [120] = {.index = 225, .length = 4}, - [121] = {.index = 229, .length = 2}, - [122] = {.index = 231, .length = 2}, - [123] = {.index = 233, .length = 2}, - [124] = {.index = 235, .length = 5}, - [125] = {.index = 240, .length = 2}, - [126] = {.index = 242, .length = 3}, + [61] = {.index = 93, .length = 3}, + [62] = {.index = 96, .length = 3}, + [63] = {.index = 99, .length = 2}, + [64] = {.index = 101, .length = 3}, + [65] = {.index = 104, .length = 2}, + [66] = {.index = 106, .length = 5}, + [67] = {.index = 111, .length = 3}, + [68] = {.index = 114, .length = 5}, + [69] = {.index = 119, .length = 2}, + [70] = {.index = 121, .length = 2}, + [71] = {.index = 123, .length = 3}, + [72] = {.index = 126, .length = 2}, + [73] = {.index = 128, .length = 2}, + [74] = {.index = 130, .length = 1}, + [75] = {.index = 131, .length = 2}, + [76] = {.index = 133, .length = 2}, + [77] = {.index = 135, .length = 2}, + [78] = {.index = 137, .length = 3}, + [79] = {.index = 140, .length = 2}, + [80] = {.index = 142, .length = 2}, + [81] = {.index = 144, .length = 2}, + [82] = {.index = 146, .length = 1}, + [83] = {.index = 147, .length = 2}, + [84] = {.index = 149, .length = 2}, + [85] = {.index = 151, .length = 4}, + [86] = {.index = 155, .length = 1}, + [87] = {.index = 156, .length = 2}, + [88] = {.index = 158, .length = 1}, + [89] = {.index = 159, .length = 1}, + [90] = {.index = 160, .length = 4}, + [91] = {.index = 164, .length = 4}, + [92] = {.index = 168, .length = 2}, + [93] = {.index = 170, .length = 2}, + [94] = {.index = 172, .length = 3}, + [95] = {.index = 175, .length = 5}, + [96] = {.index = 180, .length = 3}, + [97] = {.index = 183, .length = 2}, + [98] = {.index = 185, .length = 1}, + [100] = {.index = 186, .length = 2}, + [101] = {.index = 188, .length = 2}, + [102] = {.index = 190, .length = 2}, + [103] = {.index = 192, .length = 3}, + [104] = {.index = 195, .length = 2}, + [105] = {.index = 197, .length = 2}, + [106] = {.index = 199, .length = 2}, + [107] = {.index = 201, .length = 2}, + [108] = {.index = 203, .length = 3}, + [109] = {.index = 206, .length = 2}, + [110] = {.index = 208, .length = 1}, + [111] = {.index = 209, .length = 5}, + [112] = {.index = 214, .length = 2}, + [113] = {.index = 216, .length = 3}, + [114] = {.index = 219, .length = 2}, + [115] = {.index = 219, .length = 2}, + [116] = {.index = 221, .length = 3}, + [117] = {.index = 224, .length = 2}, + [118] = {.index = 226, .length = 1}, + [119] = {.index = 227, .length = 4}, + [120] = {.index = 231, .length = 3}, + [121] = {.index = 234, .length = 2}, + [122] = {.index = 236, .length = 2}, + [123] = {.index = 35, .length = 1}, + [124] = {.index = 238, .length = 5}, + [125] = {.index = 243, .length = 4}, + [126] = {.index = 247, .length = 2}, + [127] = {.index = 249, .length = 2}, + [128] = {.index = 251, .length = 2}, + [129] = {.index = 253, .length = 5}, + [130] = {.index = 258, .length = 2}, + [131] = {.index = 260, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2857,217 +2862,240 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [92] = {field_declarator, 2}, [93] = - {field_declarator, 0}, - {field_value, 2}, - [95] = + {field_body, 3}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, + [96] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [98] = + [99] = + {field_declarator, 0}, + {field_value, 2}, + [101] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [101] = + [104] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [103] = + [106] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [108] = + [111] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [111] = + [114] = {field_body, 3}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [116] = + [119] = {field_argument, 0}, {field_index, 2}, - [118] = + [121] = {field_alternative, 3}, {field_condition, 0}, - [120] = + [123] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [123] = + [126] = {field_alternative, 3}, {field_condition, 1}, - [125] = + [128] = {field_alternative, 3}, {field_name, 1}, - [127] = + [130] = {field_size, 1}, - [128] = + [131] = {field_declarator, 3}, {field_type, 1}, - [130] = + [133] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [132] = + [135] = {field_name, 0}, {field_value, 2}, - [134] = + [137] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [137] = + [140] = {field_declarator, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [139] = + [142] = {field_body, 4}, {field_name, 3}, - [141] = + [144] = {field_body, 1}, {field_condition, 3}, - [143] = + [146] = {field_update, 2}, - [144] = + [147] = {field_initializer, 0}, {field_update, 2}, - [146] = + [149] = {field_condition, 1}, {field_initializer, 0}, - [148] = + [151] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [152] = + [155] = {field_operand, 1}, - [153] = + [156] = {field_assembly_code, 2}, {field_output_operands, 3}, - [155] = + [158] = {field_assembly_code, 3}, - [156] = - {field_declarator, 3}, - [157] = - {field_declarator, 0}, - {field_size, 2}, [159] = + {field_declarator, 3}, + [160] = {field_declarator, 1}, {field_declarator, 2}, - [161] = + {field_declarator, 3}, + {field_type, 0, .inherited = true}, + [164] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [165] = + [168] = + {field_declarator, 0}, + {field_size, 2}, + [170] = + {field_declarator, 1}, + {field_declarator, 2}, + [172] = + {field_body, 4}, + {field_declarator, 3}, + {field_type, 1, .inherited = true}, + [175] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [170] = + [180] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [173] = + [183] = {field_alternative, 4}, {field_condition, 1}, - [175] = + [185] = {field_size, 2}, - [176] = + [186] = {field_body, 2}, {field_filter, 1}, - [178] = + [188] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [180] = + [190] = {field_condition, 1}, {field_update, 3}, - [182] = + [192] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [185] = + [195] = {field_initializer, 0}, {field_update, 3}, - [187] = + [197] = {field_condition, 2}, {field_initializer, 0}, - [189] = + [199] = {field_member, 4}, {field_type, 2}, - [191] = + [201] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [193] = + [203] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [196] = + [206] = {field_assembly_code, 3}, {field_output_operands, 4}, - [198] = + [208] = {field_declarator, 4}, - [199] = + [209] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 0, .inherited = true}, + [214] = {field_declarator, 0}, {field_size, 3}, - [201] = + [216] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3}, + [219] = {field_designator, 0}, {field_value, 2}, - [203] = + [221] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [206] = + [224] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [208] = + [226] = {field_register, 1}, - [209] = + [227] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [213] = + [231] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [216] = + [234] = {field_constraint, 0}, {field_value, 2}, - [218] = + [236] = {field_register, 1}, {field_register, 2, .inherited = true}, - [220] = + [238] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [225] = + [243] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [229] = + [247] = {field_end, 3}, {field_start, 1}, - [231] = + [249] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [233] = + [251] = {field_label, 1}, {field_label, 2, .inherited = true}, - [235] = + [253] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [240] = + [258] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [242] = + [260] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3117,19 +3145,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [53] = { [3] = alias_sym_type_identifier, }, - [77] = { + [78] = { [1] = alias_sym_type_identifier, }, - [79] = { + [80] = { [3] = alias_sym_type_identifier, }, - [96] = { + [99] = { [1] = alias_sym_field_identifier, }, - [103] = { + [106] = { [4] = alias_sym_field_identifier, }, - [109] = { + [114] = { [0] = alias_sym_field_identifier, }, }; @@ -3144,53 +3172,53 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2] = 2, [3] = 2, [4] = 4, - [5] = 2, + [5] = 4, [6] = 4, [7] = 4, [8] = 2, [9] = 4, [10] = 2, - [11] = 4, + [11] = 2, [12] = 12, - [13] = 13, - [14] = 14, + [13] = 12, + [14] = 12, [15] = 15, - [16] = 15, - [17] = 17, - [18] = 14, - [19] = 15, - [20] = 14, - [21] = 15, - [22] = 14, - [23] = 14, - [24] = 15, - [25] = 25, + [16] = 16, + [17] = 12, + [18] = 18, + [19] = 19, + [20] = 19, + [21] = 21, + [22] = 12, + [23] = 19, + [24] = 19, + [25] = 19, [26] = 26, - [27] = 26, + [27] = 16, [28] = 28, - [29] = 29, + [29] = 28, [30] = 30, [31] = 31, - [32] = 32, - [33] = 28, - [34] = 26, - [35] = 26, + [32] = 28, + [33] = 31, + [34] = 34, + [35] = 34, [36] = 36, - [37] = 36, - [38] = 32, + [37] = 31, + [38] = 38, [39] = 30, - [40] = 28, - [41] = 30, - [42] = 30, - [43] = 28, - [44] = 32, - [45] = 28, - [46] = 32, - [47] = 36, - [48] = 36, - [49] = 30, - [50] = 36, - [51] = 32, + [40] = 16, + [41] = 28, + [42] = 31, + [43] = 31, + [44] = 30, + [45] = 34, + [46] = 30, + [47] = 16, + [48] = 34, + [49] = 28, + [50] = 34, + [51] = 30, [52] = 52, [53] = 53, [54] = 54, @@ -3198,30 +3226,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 56, + [59] = 55, [60] = 58, [61] = 57, - [62] = 55, + [62] = 56, [63] = 54, - [64] = 58, + [64] = 57, [65] = 58, - [66] = 58, - [67] = 57, - [68] = 56, - [69] = 57, - [70] = 57, - [71] = 55, - [72] = 55, - [73] = 54, + [66] = 54, + [67] = 58, + [68] = 55, + [69] = 54, + [70] = 58, + [71] = 57, + [72] = 56, + [73] = 56, [74] = 55, - [75] = 56, - [76] = 54, + [75] = 54, + [76] = 55, [77] = 56, - [78] = 54, - [79] = 57, - [80] = 56, - [81] = 58, - [82] = 54, + [78] = 57, + [79] = 54, + [80] = 58, + [81] = 57, + [82] = 56, [83] = 55, [84] = 84, [85] = 84, @@ -3244,7 +3272,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [102] = 102, [103] = 103, [104] = 104, - [105] = 105, + [105] = 96, [106] = 106, [107] = 107, [108] = 108, @@ -3268,16 +3296,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [126] = 126, [127] = 127, [128] = 128, - [129] = 117, + [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 133, + [133] = 107, [134] = 134, [135] = 135, [136] = 136, [137] = 137, - [138] = 97, + [138] = 138, [139] = 139, [140] = 140, [141] = 141, @@ -3297,7 +3325,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 90, + [158] = 158, [159] = 159, [160] = 160, [161] = 161, @@ -3305,1465 +3333,1465 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [163] = 163, [164] = 164, [165] = 165, - [166] = 91, - [167] = 98, - [168] = 132, - [169] = 130, - [170] = 117, - [171] = 126, - [172] = 125, - [173] = 124, - [174] = 131, - [175] = 123, - [176] = 122, - [177] = 127, - [178] = 119, - [179] = 114, - [180] = 112, - [181] = 113, - [182] = 92, - [183] = 120, - [184] = 121, - [185] = 93, - [186] = 94, - [187] = 95, - [188] = 96, - [189] = 110, - [190] = 99, - [191] = 100, - [192] = 118, - [193] = 108, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 90, + [172] = 128, + [173] = 115, + [174] = 98, + [175] = 91, + [176] = 121, + [177] = 101, + [178] = 99, + [179] = 122, + [180] = 110, + [181] = 120, + [182] = 109, + [183] = 119, + [184] = 139, + [185] = 111, + [186] = 124, + [187] = 140, + [188] = 112, + [189] = 113, + [190] = 141, + [191] = 142, + [192] = 125, + [193] = 117, [194] = 116, - [195] = 134, - [196] = 115, - [197] = 101, - [198] = 137, - [199] = 102, - [200] = 136, - [201] = 103, - [202] = 104, - [203] = 105, - [204] = 135, - [205] = 106, - [206] = 133, - [207] = 107, - [208] = 128, - [209] = 109, - [210] = 111, - [211] = 97, - [212] = 143, - [213] = 161, - [214] = 162, - [215] = 164, - [216] = 163, - [217] = 149, - [218] = 160, - [219] = 152, - [220] = 159, - [221] = 153, - [222] = 142, - [223] = 141, - [224] = 148, - [225] = 156, - [226] = 150, - [227] = 227, - [228] = 227, - [229] = 90, + [195] = 126, + [196] = 118, + [197] = 102, + [198] = 114, + [199] = 108, + [200] = 127, + [201] = 96, + [202] = 106, + [203] = 131, + [204] = 130, + [205] = 129, + [206] = 123, + [207] = 132, + [208] = 135, + [209] = 100, + [210] = 134, + [211] = 136, + [212] = 92, + [213] = 107, + [214] = 137, + [215] = 138, + [216] = 93, + [217] = 94, + [218] = 95, + [219] = 97, + [220] = 103, + [221] = 104, + [222] = 157, + [223] = 168, + [224] = 144, + [225] = 145, + [226] = 146, + [227] = 167, + [228] = 152, + [229] = 165, [230] = 90, - [231] = 144, - [232] = 154, - [233] = 139, - [234] = 145, - [235] = 165, - [236] = 151, - [237] = 146, - [238] = 147, - [239] = 155, - [240] = 140, - [241] = 157, - [242] = 90, - [243] = 137, - [244] = 115, - [245] = 110, - [246] = 111, - [247] = 118, - [248] = 116, - [249] = 115, - [250] = 92, - [251] = 113, - [252] = 112, - [253] = 107, - [254] = 132, - [255] = 130, - [256] = 107, - [257] = 97, - [258] = 111, - [259] = 136, - [260] = 110, - [261] = 131, - [262] = 135, - [263] = 101, - [264] = 112, - [265] = 109, - [266] = 91, - [267] = 133, - [268] = 106, - [269] = 113, - [270] = 105, - [271] = 104, - [272] = 92, - [273] = 102, - [274] = 135, - [275] = 103, - [276] = 132, - [277] = 120, - [278] = 130, - [279] = 109, - [280] = 126, - [281] = 102, - [282] = 101, - [283] = 100, - [284] = 125, - [285] = 117, - [286] = 128, - [287] = 126, - [288] = 125, - [289] = 99, - [290] = 124, - [291] = 124, - [292] = 123, - [293] = 123, - [294] = 122, - [295] = 98, - [296] = 121, - [297] = 96, - [298] = 122, - [299] = 118, - [300] = 95, - [301] = 94, - [302] = 93, - [303] = 114, - [304] = 119, - [305] = 127, - [306] = 128, - [307] = 122, - [308] = 131, - [309] = 116, - [310] = 136, - [311] = 134, - [312] = 108, - [313] = 137, - [314] = 115, - [315] = 111, - [316] = 110, - [317] = 127, - [318] = 109, - [319] = 91, - [320] = 106, - [321] = 105, - [322] = 104, - [323] = 103, - [324] = 102, - [325] = 121, - [326] = 101, - [327] = 100, - [328] = 99, - [329] = 98, - [330] = 120, - [331] = 96, - [332] = 119, - [333] = 95, - [334] = 114, - [335] = 94, - [336] = 93, - [337] = 93, - [338] = 114, - [339] = 119, - [340] = 127, - [341] = 128, - [342] = 107, - [343] = 94, - [344] = 134, - [345] = 95, - [346] = 108, - [347] = 96, - [348] = 116, - [349] = 133, + [231] = 147, + [232] = 169, + [233] = 164, + [234] = 161, + [235] = 149, + [236] = 156, + [237] = 160, + [238] = 238, + [239] = 166, + [240] = 238, + [241] = 159, + [242] = 155, + [243] = 90, + [244] = 90, + [245] = 153, + [246] = 170, + [247] = 151, + [248] = 143, + [249] = 163, + [250] = 150, + [251] = 148, + [252] = 162, + [253] = 154, + [254] = 158, + [255] = 136, + [256] = 141, + [257] = 139, + [258] = 140, + [259] = 127, + [260] = 138, + [261] = 137, + [262] = 104, + [263] = 103, + [264] = 92, + [265] = 135, + [266] = 139, + [267] = 132, + [268] = 140, + [269] = 129, + [270] = 141, + [271] = 131, + [272] = 134, + [273] = 126, + [274] = 125, + [275] = 124, + [276] = 138, + [277] = 137, + [278] = 123, + [279] = 122, + [280] = 121, + [281] = 109, + [282] = 130, + [283] = 120, + [284] = 128, + [285] = 110, + [286] = 92, + [287] = 119, + [288] = 117, + [289] = 116, + [290] = 114, + [291] = 108, + [292] = 111, + [293] = 112, + [294] = 106, + [295] = 118, + [296] = 102, + [297] = 115, + [298] = 142, + [299] = 101, + [300] = 91, + [301] = 97, + [302] = 99, + [303] = 98, + [304] = 136, + [305] = 135, + [306] = 113, + [307] = 112, + [308] = 113, + [309] = 100, + [310] = 99, + [311] = 132, + [312] = 98, + [313] = 129, + [314] = 127, + [315] = 100, + [316] = 126, + [317] = 125, + [318] = 124, + [319] = 134, + [320] = 107, + [321] = 111, + [322] = 110, + [323] = 93, + [324] = 109, + [325] = 131, + [326] = 94, + [327] = 95, + [328] = 97, + [329] = 115, + [330] = 123, + [331] = 122, + [332] = 103, + [333] = 104, + [334] = 118, + [335] = 96, + [336] = 121, + [337] = 109, + [338] = 120, + [339] = 96, + [340] = 110, + [341] = 104, + [342] = 111, + [343] = 103, + [344] = 112, + [345] = 113, + [346] = 119, + [347] = 117, + [348] = 128, + [349] = 130, [350] = 97, - [351] = 98, - [352] = 99, - [353] = 123, - [354] = 100, - [355] = 124, - [356] = 137, - [357] = 121, - [358] = 120, - [359] = 118, - [360] = 136, - [361] = 92, - [362] = 113, - [363] = 135, - [364] = 112, - [365] = 126, - [366] = 133, - [367] = 125, - [368] = 91, + [351] = 130, + [352] = 131, + [353] = 98, + [354] = 95, + [355] = 91, + [356] = 101, + [357] = 94, + [358] = 102, + [359] = 139, + [360] = 140, + [361] = 141, + [362] = 142, + [363] = 118, + [364] = 115, + [365] = 116, + [366] = 93, + [367] = 114, + [368] = 108, [369] = 106, - [370] = 105, - [371] = 132, - [372] = 131, - [373] = 130, - [374] = 134, - [375] = 104, - [376] = 117, - [377] = 103, - [378] = 108, - [379] = 379, - [380] = 145, - [381] = 381, - [382] = 163, - [383] = 164, - [384] = 379, - [385] = 385, - [386] = 155, - [387] = 160, - [388] = 385, - [389] = 389, - [390] = 390, - [391] = 390, - [392] = 165, - [393] = 156, - [394] = 394, - [395] = 159, - [396] = 389, - [397] = 161, - [398] = 153, - [399] = 385, - [400] = 381, - [401] = 153, - [402] = 394, - [403] = 394, - [404] = 379, - [405] = 381, - [406] = 165, - [407] = 381, - [408] = 385, - [409] = 381, - [410] = 390, - [411] = 159, - [412] = 227, - [413] = 155, - [414] = 389, - [415] = 379, - [416] = 416, - [417] = 389, - [418] = 143, - [419] = 416, - [420] = 420, - [421] = 152, - [422] = 394, - [423] = 154, - [424] = 140, - [425] = 151, - [426] = 390, - [427] = 139, - [428] = 162, - [429] = 143, - [430] = 156, - [431] = 389, - [432] = 160, - [433] = 154, - [434] = 157, - [435] = 420, - [436] = 394, - [437] = 148, + [370] = 138, + [371] = 142, + [372] = 107, + [373] = 137, + [374] = 95, + [375] = 94, + [376] = 93, + [377] = 102, + [378] = 92, + [379] = 128, + [380] = 101, + [381] = 91, + [382] = 136, + [383] = 134, + [384] = 135, + [385] = 132, + [386] = 99, + [387] = 100, + [388] = 106, + [389] = 108, + [390] = 114, + [391] = 116, + [392] = 117, + [393] = 119, + [394] = 120, + [395] = 121, + [396] = 122, + [397] = 123, + [398] = 124, + [399] = 125, + [400] = 126, + [401] = 127, + [402] = 129, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 148, + [408] = 408, + [409] = 409, + [410] = 149, + [411] = 411, + [412] = 150, + [413] = 143, + [414] = 403, + [415] = 415, + [416] = 411, + [417] = 408, + [418] = 159, + [419] = 151, + [420] = 155, + [421] = 144, + [422] = 157, + [423] = 409, + [424] = 166, + [425] = 169, + [426] = 168, + [427] = 167, + [428] = 403, + [429] = 415, + [430] = 170, + [431] = 165, + [432] = 411, + [433] = 164, + [434] = 161, + [435] = 405, + [436] = 156, + [437] = 406, [438] = 149, - [439] = 379, - [440] = 385, - [441] = 420, - [442] = 139, - [443] = 420, - [444] = 416, - [445] = 416, - [446] = 151, - [447] = 162, - [448] = 390, - [449] = 157, - [450] = 389, - [451] = 147, - [452] = 390, - [453] = 147, - [454] = 146, - [455] = 146, - [456] = 145, - [457] = 385, - [458] = 149, - [459] = 144, - [460] = 161, - [461] = 420, - [462] = 144, - [463] = 164, - [464] = 163, - [465] = 420, - [466] = 379, - [467] = 416, - [468] = 152, - [469] = 148, - [470] = 394, - [471] = 140, - [472] = 142, - [473] = 141, - [474] = 150, - [475] = 150, - [476] = 142, - [477] = 416, - [478] = 141, - [479] = 156, - [480] = 154, - [481] = 227, - [482] = 144, - [483] = 141, - [484] = 146, - [485] = 485, - [486] = 145, - [487] = 162, - [488] = 153, - [489] = 148, - [490] = 143, - [491] = 157, - [492] = 155, - [493] = 142, - [494] = 159, - [495] = 163, - [496] = 161, - [497] = 152, - [498] = 164, - [499] = 150, - [500] = 147, - [501] = 160, - [502] = 151, - [503] = 139, - [504] = 504, - [505] = 165, - [506] = 149, - [507] = 507, - [508] = 508, - [509] = 508, - [510] = 507, - [511] = 508, - [512] = 507, - [513] = 508, - [514] = 508, - [515] = 508, - [516] = 508, - [517] = 507, - [518] = 507, - [519] = 508, - [520] = 507, - [521] = 507, - [522] = 507, - [523] = 227, - [524] = 524, - [525] = 525, - [526] = 227, - [527] = 227, - [528] = 227, - [529] = 90, - [530] = 530, - [531] = 531, - [532] = 531, - [533] = 531, - [534] = 531, - [535] = 531, - [536] = 531, - [537] = 531, - [538] = 531, - [539] = 531, - [540] = 531, - [541] = 531, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, + [439] = 415, + [440] = 170, + [441] = 404, + [442] = 163, + [443] = 409, + [444] = 160, + [445] = 162, + [446] = 160, + [447] = 158, + [448] = 404, + [449] = 404, + [450] = 154, + [451] = 153, + [452] = 148, + [453] = 150, + [454] = 411, + [455] = 415, + [456] = 162, + [457] = 403, + [458] = 408, + [459] = 408, + [460] = 143, + [461] = 415, + [462] = 403, + [463] = 411, + [464] = 147, + [465] = 152, + [466] = 415, + [467] = 146, + [468] = 144, + [469] = 145, + [470] = 411, + [471] = 147, + [472] = 408, + [473] = 409, + [474] = 406, + [475] = 169, + [476] = 145, + [477] = 168, + [478] = 167, + [479] = 238, + [480] = 159, + [481] = 158, + [482] = 146, + [483] = 151, + [484] = 405, + [485] = 406, + [486] = 166, + [487] = 405, + [488] = 409, + [489] = 165, + [490] = 152, + [491] = 164, + [492] = 161, + [493] = 156, + [494] = 405, + [495] = 406, + [496] = 163, + [497] = 406, + [498] = 153, + [499] = 409, + [500] = 403, + [501] = 405, + [502] = 154, + [503] = 404, + [504] = 155, + [505] = 157, + [506] = 408, + [507] = 149, + [508] = 151, + [509] = 238, + [510] = 165, + [511] = 511, + [512] = 162, + [513] = 166, + [514] = 147, + [515] = 156, + [516] = 153, + [517] = 517, + [518] = 169, + [519] = 163, + [520] = 158, + [521] = 157, + [522] = 159, + [523] = 154, + [524] = 143, + [525] = 150, + [526] = 160, + [527] = 148, + [528] = 155, + [529] = 146, + [530] = 144, + [531] = 145, + [532] = 161, + [533] = 167, + [534] = 168, + [535] = 152, + [536] = 164, + [537] = 537, + [538] = 538, + [539] = 537, + [540] = 538, + [541] = 538, + [542] = 538, + [543] = 538, + [544] = 537, + [545] = 537, + [546] = 537, + [547] = 538, + [548] = 537, + [549] = 537, + [550] = 538, + [551] = 537, + [552] = 538, [553] = 553, - [554] = 553, - [555] = 555, + [554] = 238, + [555] = 238, [556] = 556, - [557] = 556, - [558] = 555, - [559] = 559, + [557] = 238, + [558] = 238, + [559] = 90, [560] = 560, - [561] = 561, - [562] = 561, + [561] = 560, + [562] = 562, [563] = 560, - [564] = 564, + [564] = 560, [565] = 560, - [566] = 561, - [567] = 561, + [566] = 560, + [567] = 560, [568] = 560, - [569] = 569, - [570] = 569, + [569] = 560, + [570] = 560, [571] = 571, - [572] = 572, - [573] = 572, - [574] = 569, + [572] = 560, + [573] = 573, + [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 572, - [579] = 569, + [578] = 578, + [579] = 579, [580] = 580, - [581] = 572, + [581] = 581, [582] = 582, - [583] = 582, + [583] = 583, [584] = 584, - [585] = 571, + [585] = 584, [586] = 586, [587] = 587, - [588] = 588, - [589] = 589, - [590] = 588, + [588] = 587, + [589] = 586, + [590] = 590, [591] = 591, - [592] = 588, - [593] = 593, - [594] = 594, - [595] = 588, - [596] = 588, - [597] = 594, - [598] = 594, + [592] = 592, + [593] = 591, + [594] = 592, + [595] = 591, + [596] = 592, + [597] = 592, + [598] = 591, [599] = 599, - [600] = 588, - [601] = 588, - [602] = 594, + [600] = 600, + [601] = 601, + [602] = 600, [603] = 603, [604] = 604, - [605] = 594, - [606] = 606, - [607] = 607, + [605] = 605, + [606] = 600, + [607] = 600, [608] = 608, [609] = 609, - [610] = 588, - [611] = 611, - [612] = 612, + [610] = 609, + [611] = 609, + [612] = 609, [613] = 613, - [614] = 614, + [614] = 613, [615] = 615, - [616] = 614, - [617] = 614, + [616] = 601, + [617] = 617, [618] = 618, - [619] = 571, + [619] = 618, [620] = 620, - [621] = 614, - [622] = 614, - [623] = 623, - [624] = 624, + [621] = 618, + [622] = 618, + [623] = 620, + [624] = 620, [625] = 625, - [626] = 626, - [627] = 627, + [626] = 625, + [627] = 618, [628] = 628, - [629] = 614, + [629] = 618, [630] = 630, - [631] = 631, - [632] = 571, - [633] = 614, + [631] = 618, + [632] = 632, + [633] = 625, [634] = 634, [635] = 635, - [636] = 614, - [637] = 611, - [638] = 638, + [636] = 636, + [637] = 637, + [638] = 625, [639] = 639, - [640] = 640, + [640] = 625, [641] = 641, - [642] = 638, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, + [642] = 642, + [643] = 625, + [644] = 618, + [645] = 625, + [646] = 625, + [647] = 620, + [648] = 620, [649] = 649, - [650] = 639, - [651] = 643, + [650] = 650, + [651] = 651, [652] = 652, - [653] = 644, - [654] = 648, + [653] = 653, + [654] = 654, [655] = 655, - [656] = 647, + [656] = 656, [657] = 657, [658] = 658, - [659] = 638, - [660] = 660, - [661] = 657, + [659] = 659, + [660] = 601, + [661] = 655, [662] = 662, [663] = 663, [664] = 664, - [665] = 645, + [665] = 665, [666] = 666, - [667] = 655, - [668] = 668, + [667] = 667, + [668] = 601, [669] = 669, - [670] = 662, + [670] = 670, [671] = 671, - [672] = 639, - [673] = 668, + [672] = 672, + [673] = 673, [674] = 674, [675] = 675, - [676] = 643, + [676] = 676, [677] = 677, - [678] = 668, - [679] = 663, - [680] = 639, - [681] = 669, - [682] = 658, - [683] = 647, - [684] = 664, - [685] = 655, - [686] = 668, - [687] = 647, - [688] = 666, - [689] = 668, - [690] = 690, - [691] = 643, - [692] = 639, - [693] = 648, - [694] = 664, - [695] = 663, - [696] = 658, - [697] = 638, - [698] = 660, - [699] = 657, - [700] = 662, - [701] = 660, - [702] = 663, - [703] = 645, - [704] = 664, - [705] = 648, - [706] = 666, - [707] = 666, - [708] = 655, - [709] = 669, - [710] = 645, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 678, + [682] = 682, + [683] = 670, + [684] = 684, + [685] = 685, + [686] = 676, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 670, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 678, + [695] = 676, + [696] = 696, + [697] = 674, + [698] = 698, + [699] = 699, + [700] = 687, + [701] = 675, + [702] = 677, + [703] = 679, + [704] = 678, + [705] = 680, + [706] = 669, + [707] = 670, + [708] = 692, + [709] = 709, + [710] = 682, [711] = 711, - [712] = 668, - [713] = 652, - [714] = 669, - [715] = 677, - [716] = 643, - [717] = 647, - [718] = 669, - [719] = 658, - [720] = 638, - [721] = 660, - [722] = 657, - [723] = 662, - [724] = 724, - [725] = 668, - [726] = 662, - [727] = 643, - [728] = 674, - [729] = 658, - [730] = 638, - [731] = 639, - [732] = 648, - [733] = 645, - [734] = 734, - [735] = 660, - [736] = 657, - [737] = 648, - [738] = 724, - [739] = 639, - [740] = 677, - [741] = 643, - [742] = 648, - [743] = 669, - [744] = 655, - [745] = 666, - [746] = 664, - [747] = 647, - [748] = 663, - [749] = 662, - [750] = 643, - [751] = 662, - [752] = 657, - [753] = 674, - [754] = 660, - [755] = 639, - [756] = 648, - [757] = 645, - [758] = 758, - [759] = 663, - [760] = 638, - [761] = 658, - [762] = 658, - [763] = 663, - [764] = 647, - [765] = 664, - [766] = 666, - [767] = 655, - [768] = 669, - [769] = 664, - [770] = 647, - [771] = 660, - [772] = 657, - [773] = 652, - [774] = 655, - [775] = 666, - [776] = 674, - [777] = 658, - [778] = 638, - [779] = 660, - [780] = 657, - [781] = 662, - [782] = 663, - [783] = 664, - [784] = 666, - [785] = 655, - [786] = 669, - [787] = 734, - [788] = 668, - [789] = 677, + [712] = 684, + [713] = 692, + [714] = 688, + [715] = 692, + [716] = 696, + [717] = 674, + [718] = 718, + [719] = 670, + [720] = 675, + [721] = 677, + [722] = 678, + [723] = 679, + [724] = 698, + [725] = 680, + [726] = 669, + [727] = 682, + [728] = 698, + [729] = 679, + [730] = 674, + [731] = 684, + [732] = 696, + [733] = 688, + [734] = 684, + [735] = 682, + [736] = 669, + [737] = 680, + [738] = 679, + [739] = 677, + [740] = 688, + [741] = 675, + [742] = 677, + [743] = 679, + [744] = 680, + [745] = 669, + [746] = 696, + [747] = 682, + [748] = 674, + [749] = 698, + [750] = 684, + [751] = 688, + [752] = 699, + [753] = 753, + [754] = 677, + [755] = 692, + [756] = 679, + [757] = 687, + [758] = 680, + [759] = 693, + [760] = 669, + [761] = 685, + [762] = 682, + [763] = 691, + [764] = 684, + [765] = 688, + [766] = 766, + [767] = 677, + [768] = 680, + [769] = 669, + [770] = 682, + [771] = 684, + [772] = 696, + [773] = 688, + [774] = 678, + [775] = 696, + [776] = 696, + [777] = 674, + [778] = 698, + [779] = 676, + [780] = 691, + [781] = 678, + [782] = 711, + [783] = 670, + [784] = 698, + [785] = 692, + [786] = 674, + [787] = 698, + [788] = 711, + [789] = 789, [790] = 711, - [791] = 542, - [792] = 792, - [793] = 793, - [794] = 793, - [795] = 795, - [796] = 793, - [797] = 793, - [798] = 793, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 524, - [814] = 814, - [815] = 814, - [816] = 816, - [817] = 525, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, + [791] = 692, + [792] = 670, + [793] = 687, + [794] = 678, + [795] = 698, + [796] = 691, + [797] = 676, + [798] = 691, + [799] = 676, + [800] = 674, + [801] = 696, + [802] = 688, + [803] = 711, + [804] = 684, + [805] = 692, + [806] = 682, + [807] = 691, + [808] = 676, + [809] = 670, + [810] = 669, + [811] = 676, + [812] = 680, + [813] = 689, + [814] = 711, + [815] = 679, + [816] = 766, + [817] = 689, + [818] = 677, + [819] = 691, + [820] = 691, + [821] = 571, [822] = 822, - [823] = 823, + [823] = 822, [824] = 824, - [825] = 822, - [826] = 826, + [825] = 825, + [826] = 822, [827] = 827, - [828] = 828, - [829] = 829, - [830] = 819, + [828] = 822, + [829] = 822, + [830] = 830, [831] = 831, - [832] = 819, + [832] = 832, [833] = 833, - [834] = 826, + [834] = 834, [835] = 835, [836] = 836, - [837] = 818, - [838] = 826, + [837] = 837, + [838] = 838, [839] = 839, - [840] = 818, - [841] = 826, + [840] = 840, + [841] = 841, [842] = 842, [843] = 843, - [844] = 826, - [845] = 818, - [846] = 822, - [847] = 847, - [848] = 822, - [849] = 819, + [844] = 844, + [845] = 845, + [846] = 553, + [847] = 843, + [848] = 556, + [849] = 849, [850] = 850, - [851] = 822, - [852] = 819, - [853] = 818, + [851] = 851, + [852] = 849, + [853] = 851, [854] = 854, [855] = 855, [856] = 856, [857] = 857, [858] = 858, [859] = 859, - [860] = 860, + [860] = 851, [861] = 861, [862] = 862, - [863] = 800, + [863] = 863, [864] = 864, [865] = 865, [866] = 866, - [867] = 816, - [868] = 868, + [867] = 855, + [868] = 851, [869] = 869, [870] = 870, - [871] = 795, - [872] = 799, - [873] = 800, - [874] = 792, - [875] = 800, - [876] = 800, - [877] = 816, - [878] = 878, - [879] = 879, - [880] = 879, - [881] = 802, + [871] = 849, + [872] = 872, + [873] = 851, + [874] = 855, + [875] = 855, + [876] = 854, + [877] = 854, + [878] = 854, + [879] = 849, + [880] = 855, + [881] = 854, [882] = 882, - [883] = 882, - [884] = 879, - [885] = 882, - [886] = 879, - [887] = 801, - [888] = 882, - [889] = 879, - [890] = 882, + [883] = 883, + [884] = 884, + [885] = 849, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 845, [891] = 891, - [892] = 891, + [892] = 892, [893] = 893, - [894] = 891, + [894] = 894, [895] = 895, - [896] = 896, + [896] = 830, [897] = 897, - [898] = 891, - [899] = 891, - [900] = 891, + [898] = 898, + [899] = 899, + [900] = 900, [901] = 901, [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 800, - [909] = 909, - [910] = 910, + [903] = 825, + [904] = 827, + [905] = 824, + [906] = 830, + [907] = 830, + [908] = 908, + [909] = 830, + [910] = 845, [911] = 911, - [912] = 912, - [913] = 913, - [914] = 901, - [915] = 904, - [916] = 916, - [917] = 865, - [918] = 918, - [919] = 907, - [920] = 909, - [921] = 910, + [912] = 911, + [913] = 911, + [914] = 914, + [915] = 914, + [916] = 832, + [917] = 911, + [918] = 831, + [919] = 914, + [920] = 914, + [921] = 914, [922] = 911, - [923] = 902, - [924] = 913, - [925] = 912, - [926] = 903, - [927] = 862, - [928] = 906, - [929] = 859, - [930] = 858, - [931] = 905, - [932] = 864, - [933] = 866, - [934] = 904, - [935] = 869, - [936] = 905, - [937] = 906, - [938] = 912, - [939] = 913, - [940] = 902, - [941] = 911, - [942] = 910, - [943] = 909, - [944] = 907, - [945] = 903, - [946] = 901, - [947] = 916, - [948] = 870, - [949] = 868, - [950] = 860, - [951] = 821, - [952] = 811, + [923] = 923, + [924] = 924, + [925] = 923, + [926] = 926, + [927] = 923, + [928] = 928, + [929] = 929, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 933, + [934] = 923, + [935] = 923, + [936] = 926, + [937] = 937, + [938] = 923, + [939] = 556, + [940] = 940, + [941] = 553, + [942] = 942, + [943] = 943, + [944] = 944, + [945] = 945, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 830, + [950] = 950, + [951] = 951, + [952] = 952, [953] = 953, [954] = 954, - [955] = 842, - [956] = 809, - [957] = 803, - [958] = 836, - [959] = 823, + [955] = 955, + [956] = 956, + [957] = 942, + [958] = 901, + [959] = 959, [960] = 960, [961] = 961, [962] = 962, - [963] = 807, - [964] = 806, - [965] = 855, + [963] = 940, + [964] = 897, + [965] = 965, [966] = 966, - [967] = 854, - [968] = 810, - [969] = 812, - [970] = 831, - [971] = 808, - [972] = 847, - [973] = 814, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 895, + [971] = 954, + [972] = 953, + [973] = 952, [974] = 974, - [975] = 143, - [976] = 151, - [977] = 139, - [978] = 156, - [979] = 828, - [980] = 829, - [981] = 160, - [982] = 154, - [983] = 839, - [984] = 827, - [985] = 820, + [975] = 951, + [976] = 948, + [977] = 947, + [978] = 946, + [979] = 945, + [980] = 944, + [981] = 892, + [982] = 943, + [983] = 983, + [984] = 984, + [985] = 985, [986] = 986, - [987] = 833, - [988] = 805, - [989] = 804, - [990] = 843, - [991] = 835, + [987] = 943, + [988] = 944, + [989] = 989, + [990] = 946, + [991] = 991, [992] = 992, - [993] = 993, - [994] = 994, - [995] = 916, - [996] = 996, - [997] = 913, - [998] = 860, - [999] = 996, - [1000] = 994, - [1001] = 151, - [1002] = 993, - [1003] = 992, - [1004] = 986, - [1005] = 974, + [993] = 951, + [994] = 952, + [995] = 953, + [996] = 902, + [997] = 954, + [998] = 998, + [999] = 945, + [1000] = 1000, + [1001] = 889, + [1002] = 887, + [1003] = 983, + [1004] = 942, + [1005] = 947, [1006] = 1006, - [1007] = 895, - [1008] = 953, - [1009] = 143, - [1010] = 954, - [1011] = 960, - [1012] = 961, - [1013] = 868, - [1014] = 962, - [1015] = 966, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, [1016] = 1016, - [1017] = 869, - [1018] = 1018, - [1019] = 904, - [1020] = 866, - [1021] = 1021, - [1022] = 139, + [1017] = 1017, + [1018] = 891, + [1019] = 1019, + [1020] = 1020, + [1021] = 899, + [1022] = 1022, [1023] = 1023, [1024] = 1024, - [1025] = 870, - [1026] = 864, + [1025] = 1025, + [1026] = 1026, [1027] = 1027, [1028] = 1028, - [1029] = 154, - [1030] = 160, - [1031] = 156, - [1032] = 901, - [1033] = 903, - [1034] = 907, - [1035] = 909, - [1036] = 910, - [1037] = 911, - [1038] = 902, - [1039] = 912, - [1040] = 906, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 940, + [1033] = 948, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 900, + [1040] = 1040, [1041] = 1041, - [1042] = 905, - [1043] = 801, - [1044] = 525, - [1045] = 802, - [1046] = 916, - [1047] = 1047, - [1048] = 524, + [1042] = 1042, + [1043] = 835, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 858, + [1048] = 1048, [1049] = 1049, - [1050] = 151, + [1050] = 856, [1051] = 1051, - [1052] = 1052, - [1053] = 996, - [1054] = 1054, - [1055] = 143, - [1056] = 994, - [1057] = 993, - [1058] = 992, - [1059] = 986, - [1060] = 1060, - [1061] = 974, - [1062] = 953, - [1063] = 954, - [1064] = 960, - [1065] = 961, - [1066] = 962, - [1067] = 966, - [1068] = 151, + [1052] = 841, + [1053] = 861, + [1054] = 834, + [1055] = 883, + [1056] = 838, + [1057] = 865, + [1058] = 864, + [1059] = 1059, + [1060] = 859, + [1061] = 1061, + [1062] = 1062, + [1063] = 833, + [1064] = 866, + [1065] = 837, + [1066] = 166, + [1067] = 1067, + [1068] = 157, [1069] = 1069, - [1070] = 139, - [1071] = 994, - [1072] = 1069, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 996, - [1078] = 1078, - [1079] = 954, - [1080] = 993, - [1081] = 1081, + [1070] = 155, + [1071] = 870, + [1072] = 872, + [1073] = 884, + [1074] = 843, + [1075] = 882, + [1076] = 842, + [1077] = 857, + [1078] = 840, + [1079] = 886, + [1080] = 850, + [1081] = 839, [1082] = 1082, - [1083] = 960, - [1084] = 966, - [1085] = 961, - [1086] = 1069, - [1087] = 1069, - [1088] = 992, - [1089] = 962, - [1090] = 154, - [1091] = 1069, - [1092] = 160, - [1093] = 156, - [1094] = 154, - [1095] = 139, - [1096] = 143, - [1097] = 986, - [1098] = 160, - [1099] = 156, - [1100] = 974, - [1101] = 953, - [1102] = 1102, - [1103] = 1103, + [1083] = 151, + [1084] = 869, + [1085] = 159, + [1086] = 149, + [1087] = 836, + [1088] = 983, + [1089] = 1089, + [1090] = 1090, + [1091] = 1089, + [1092] = 1089, + [1093] = 1089, + [1094] = 1089, + [1095] = 159, + [1096] = 891, + [1097] = 1059, + [1098] = 953, + [1099] = 954, + [1100] = 902, + [1101] = 940, + [1102] = 942, + [1103] = 155, [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, + [1105] = 1044, + [1106] = 1082, + [1107] = 1061, + [1108] = 1062, + [1109] = 1045, + [1110] = 1067, + [1111] = 1069, [1112] = 1112, [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 92, - [1118] = 1118, - [1119] = 113, - [1120] = 1120, + [1114] = 149, + [1115] = 1048, + [1116] = 1051, + [1117] = 952, + [1118] = 151, + [1119] = 945, + [1120] = 951, [1121] = 1121, - [1122] = 112, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, - [1128] = 121, - [1129] = 131, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 120, - [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, + [1122] = 1122, + [1123] = 1049, + [1124] = 1046, + [1125] = 157, + [1126] = 166, + [1127] = 887, + [1128] = 943, + [1129] = 889, + [1130] = 899, + [1131] = 944, + [1132] = 900, + [1133] = 948, + [1134] = 947, + [1135] = 946, + [1136] = 831, + [1137] = 832, + [1138] = 983, + [1139] = 1051, + [1140] = 1061, + [1141] = 157, + [1142] = 155, + [1143] = 155, + [1144] = 1046, + [1145] = 1069, + [1146] = 1067, + [1147] = 1046, + [1148] = 1048, + [1149] = 1049, + [1150] = 1048, + [1151] = 1062, [1152] = 1152, [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1154, - [1157] = 1154, - [1158] = 1154, - [1159] = 1154, - [1160] = 1160, - [1161] = 913, - [1162] = 903, - [1163] = 905, - [1164] = 907, - [1165] = 901, - [1166] = 909, - [1167] = 910, - [1168] = 911, - [1169] = 1169, - [1170] = 902, - [1171] = 904, - [1172] = 912, - [1173] = 1173, - [1174] = 906, - [1175] = 112, - [1176] = 907, - [1177] = 1177, - [1178] = 903, - [1179] = 1179, - [1180] = 1179, - [1181] = 121, - [1182] = 1179, - [1183] = 1179, - [1184] = 120, - [1185] = 92, - [1186] = 113, - [1187] = 904, - [1188] = 901, - [1189] = 1189, - [1190] = 131, - [1191] = 905, - [1192] = 912, - [1193] = 909, - [1194] = 1179, - [1195] = 910, - [1196] = 911, - [1197] = 902, - [1198] = 906, - [1199] = 913, + [1154] = 149, + [1155] = 159, + [1156] = 151, + [1157] = 1152, + [1158] = 1069, + [1159] = 1059, + [1160] = 157, + [1161] = 166, + [1162] = 1082, + [1163] = 1163, + [1164] = 1049, + [1165] = 1152, + [1166] = 1166, + [1167] = 1061, + [1168] = 1059, + [1169] = 1152, + [1170] = 1044, + [1171] = 1152, + [1172] = 1045, + [1173] = 151, + [1174] = 159, + [1175] = 1051, + [1176] = 1067, + [1177] = 166, + [1178] = 1045, + [1179] = 1044, + [1180] = 1062, + [1181] = 1082, + [1182] = 149, + [1183] = 141, + [1184] = 139, + [1185] = 98, + [1186] = 91, + [1187] = 101, + [1188] = 102, + [1189] = 118, + [1190] = 142, + [1191] = 115, + [1192] = 140, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, - [1201] = 911, - [1202] = 905, - [1203] = 1203, - [1204] = 903, - [1205] = 1205, - [1206] = 1173, - [1207] = 901, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 907, - [1212] = 909, - [1213] = 904, - [1214] = 910, - [1215] = 902, - [1216] = 913, - [1217] = 912, - [1218] = 906, - [1219] = 1219, - [1220] = 1220, + [1201] = 1201, + [1202] = 944, + [1203] = 945, + [1204] = 946, + [1205] = 947, + [1206] = 948, + [1207] = 953, + [1208] = 942, + [1209] = 943, + [1210] = 940, + [1211] = 952, + [1212] = 951, + [1213] = 954, + [1214] = 951, + [1215] = 944, + [1216] = 1216, + [1217] = 954, + [1218] = 946, + [1219] = 91, + [1220] = 953, [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, + [1222] = 940, + [1223] = 945, + [1224] = 943, + [1225] = 952, + [1226] = 98, + [1227] = 139, + [1228] = 140, + [1229] = 947, + [1230] = 1221, + [1231] = 101, [1232] = 1232, [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1234, - [1237] = 1237, - [1238] = 1231, - [1239] = 1237, - [1240] = 1233, - [1241] = 1241, - [1242] = 1242, - [1243] = 1242, - [1244] = 1244, + [1234] = 1221, + [1235] = 115, + [1236] = 118, + [1237] = 102, + [1238] = 948, + [1239] = 142, + [1240] = 1221, + [1241] = 1221, + [1242] = 942, + [1243] = 141, + [1244] = 946, [1245] = 1245, [1246] = 1246, - [1247] = 1247, - [1248] = 910, - [1249] = 911, - [1250] = 1244, - [1251] = 902, - [1252] = 903, - [1253] = 1244, - [1254] = 1254, - [1255] = 913, - [1256] = 912, - [1257] = 1257, - [1258] = 1258, - [1259] = 1259, - [1260] = 1260, - [1261] = 1244, - [1262] = 904, - [1263] = 1242, - [1264] = 901, - [1265] = 906, - [1266] = 1173, + [1247] = 942, + [1248] = 1248, + [1249] = 940, + [1250] = 951, + [1251] = 952, + [1252] = 954, + [1253] = 953, + [1254] = 948, + [1255] = 1255, + [1256] = 947, + [1257] = 943, + [1258] = 1201, + [1259] = 944, + [1260] = 945, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, [1267] = 1267, - [1268] = 1242, - [1269] = 1247, - [1270] = 905, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, [1271] = 1271, [1272] = 1272, [1273] = 1273, - [1274] = 1267, + [1274] = 1274, [1275] = 1275, - [1276] = 1272, - [1277] = 1273, + [1276] = 1276, + [1277] = 1277, [1278] = 1278, - [1279] = 1260, - [1280] = 907, + [1279] = 1277, + [1280] = 1278, [1281] = 1281, - [1282] = 1282, - [1283] = 1272, - [1284] = 1242, - [1285] = 909, - [1286] = 1273, + [1282] = 1276, + [1283] = 1275, + [1284] = 953, + [1285] = 1285, + [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, - [1290] = 1244, + [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1273, - [1294] = 1260, + [1292] = 954, + [1293] = 1293, + [1294] = 1285, [1295] = 1295, - [1296] = 1272, - [1297] = 1297, - [1298] = 1272, + [1296] = 1296, + [1297] = 1295, + [1298] = 1298, [1299] = 1299, - [1300] = 1287, + [1300] = 1300, [1301] = 1301, - [1302] = 1273, + [1302] = 1302, [1303] = 1303, - [1304] = 1304, - [1305] = 1305, + [1304] = 1296, + [1305] = 1296, [1306] = 1306, [1307] = 1307, - [1308] = 1307, - [1309] = 1304, - [1310] = 1304, - [1311] = 1311, - [1312] = 1303, - [1313] = 1313, - [1314] = 1304, + [1308] = 952, + [1309] = 1309, + [1310] = 1310, + [1311] = 1286, + [1312] = 1285, + [1313] = 1286, + [1314] = 951, [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1304, - [1319] = 1319, - [1320] = 1303, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1303, - [1329] = 1329, - [1330] = 1327, - [1331] = 1303, - [1332] = 1332, - [1333] = 1304, - [1334] = 1304, - [1335] = 1304, - [1336] = 1324, - [1337] = 1303, - [1338] = 1338, - [1339] = 1339, - [1340] = 878, + [1318] = 1318, + [1319] = 948, + [1320] = 1296, + [1321] = 947, + [1322] = 946, + [1323] = 945, + [1324] = 1201, + [1325] = 1298, + [1326] = 1306, + [1327] = 1288, + [1328] = 1328, + [1329] = 1298, + [1330] = 944, + [1331] = 1296, + [1332] = 1296, + [1333] = 1333, + [1334] = 1317, + [1335] = 1335, + [1336] = 1287, + [1337] = 943, + [1338] = 1296, + [1339] = 1298, + [1340] = 1287, [1341] = 1341, - [1342] = 1342, - [1343] = 1155, - [1344] = 1344, - [1345] = 1169, - [1346] = 1203, - [1347] = 1209, - [1348] = 1208, - [1349] = 1349, - [1350] = 1350, + [1342] = 1286, + [1343] = 1287, + [1344] = 1298, + [1345] = 942, + [1346] = 1287, + [1347] = 1285, + [1348] = 1286, + [1349] = 1285, + [1350] = 1288, [1351] = 1351, - [1352] = 1352, - [1353] = 1353, + [1352] = 940, + [1353] = 1296, [1354] = 1354, [1355] = 1355, [1356] = 1356, [1357] = 1357, [1358] = 1358, - [1359] = 1125, + [1359] = 1359, [1360] = 1360, - [1361] = 1361, + [1361] = 1357, [1362] = 1362, - [1363] = 1118, + [1363] = 1363, [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1367, - [1368] = 1367, - [1369] = 1367, - [1370] = 1361, - [1371] = 1366, - [1372] = 1366, + [1367] = 1358, + [1368] = 1368, + [1369] = 1369, + [1370] = 1357, + [1371] = 1357, + [1372] = 1372, [1373] = 1373, - [1374] = 1374, + [1374] = 1372, [1375] = 1375, [1376] = 1376, - [1377] = 1377, + [1377] = 1357, [1378] = 1378, [1379] = 1379, [1380] = 1380, [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1382] = 1357, + [1383] = 908, [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1374, + [1385] = 1373, + [1386] = 1113, + [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 1383, - [1391] = 1391, - [1392] = 1392, - [1393] = 1391, + [1389] = 1090, + [1390] = 1153, + [1391] = 1163, + [1392] = 1166, + [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1377, - [1400] = 1377, + [1399] = 1399, + [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 1403, + [1403] = 1006, [1404] = 1404, - [1405] = 1386, + [1405] = 1401, [1406] = 1406, [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, + [1408] = 1036, + [1409] = 1401, + [1410] = 1401, [1411] = 1411, - [1412] = 1377, + [1412] = 1401, [1413] = 1413, - [1414] = 1414, - [1415] = 1374, - [1416] = 1374, - [1417] = 1380, - [1418] = 1378, - [1419] = 1376, - [1420] = 1377, - [1421] = 1381, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 847, - [1428] = 1382, - [1429] = 1395, - [1430] = 1430, - [1431] = 1423, - [1432] = 1432, - [1433] = 1385, - [1434] = 1373, - [1435] = 1396, + [1414] = 1402, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1418, + [1420] = 1416, + [1421] = 1416, + [1422] = 1416, + [1423] = 1417, + [1424] = 1415, + [1425] = 1416, + [1426] = 1416, + [1427] = 1415, + [1428] = 1428, + [1429] = 1416, + [1430] = 1417, + [1431] = 1417, + [1432] = 1417, + [1433] = 1418, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, - [1437] = 1224, - [1438] = 1438, + [1437] = 1437, + [1438] = 1437, [1439] = 1439, - [1440] = 1413, - [1441] = 1414, - [1442] = 1230, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, [1443] = 1443, - [1444] = 1432, - [1445] = 1410, - [1446] = 1439, - [1447] = 1439, - [1448] = 1403, - [1449] = 1406, - [1450] = 1426, - [1451] = 1118, - [1452] = 1409, + [1444] = 1437, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1436, + [1449] = 1449, + [1450] = 1450, + [1451] = 1446, + [1452] = 1452, [1453] = 1453, - [1454] = 847, - [1455] = 1430, - [1456] = 1219, - [1457] = 1398, + [1454] = 1436, + [1455] = 1455, + [1456] = 1437, + [1457] = 1457, [1458] = 1458, - [1459] = 1459, - [1460] = 1220, - [1461] = 1107, - [1462] = 1132, - [1463] = 1115, - [1464] = 1397, - [1465] = 1424, - [1466] = 1109, - [1467] = 1116, + [1459] = 1436, + [1460] = 1460, + [1461] = 1461, + [1462] = 886, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, [1468] = 1468, - [1469] = 1106, + [1469] = 1469, [1470] = 1470, - [1471] = 1458, - [1472] = 1438, - [1473] = 1125, - [1474] = 1458, - [1475] = 1111, - [1476] = 1120, - [1477] = 1439, - [1478] = 1439, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1458, + [1477] = 1436, + [1478] = 1434, [1479] = 1479, - [1480] = 1458, - [1481] = 1408, + [1480] = 1480, + [1481] = 1479, [1482] = 1482, [1483] = 1483, - [1484] = 1482, - [1485] = 1483, - [1486] = 1482, - [1487] = 1483, - [1488] = 1482, - [1489] = 1155, + [1484] = 1465, + [1485] = 1485, + [1486] = 1486, + [1487] = 1482, + [1488] = 1488, + [1489] = 1449, [1490] = 1483, - [1491] = 1482, - [1492] = 1483, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, + [1491] = 1491, + [1492] = 1491, + [1493] = 1488, + [1494] = 1486, + [1495] = 1485, [1496] = 1496, [1497] = 1497, - [1498] = 1498, - [1499] = 1499, + [1498] = 1036, + [1499] = 1496, [1500] = 1500, - [1501] = 1501, - [1502] = 1500, - [1503] = 1499, - [1504] = 1500, - [1505] = 1499, - [1506] = 1500, - [1507] = 1499, - [1508] = 1508, - [1509] = 1500, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, + [1501] = 1496, + [1502] = 886, + [1503] = 1503, + [1504] = 1000, + [1505] = 1006, + [1506] = 1496, + [1507] = 1025, + [1508] = 1022, + [1509] = 1273, + [1510] = 1271, + [1511] = 1267, + [1512] = 1497, [1513] = 1513, - [1514] = 1513, - [1515] = 1515, - [1516] = 1513, - [1517] = 1512, - [1518] = 1513, - [1519] = 1513, - [1520] = 1513, - [1521] = 1512, - [1522] = 1512, - [1523] = 1513, - [1524] = 1512, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1514] = 1038, + [1515] = 1014, + [1516] = 1450, + [1517] = 989, + [1518] = 1027, + [1519] = 1503, + [1520] = 1496, + [1521] = 1503, + [1522] = 1522, + [1523] = 1497, + [1524] = 1471, + [1525] = 1470, + [1526] = 1469, + [1527] = 1468, + [1528] = 1467, + [1529] = 1466, + [1530] = 1435, + [1531] = 1264, + [1532] = 1464, [1533] = 1533, [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1536, + [1535] = 1463, + [1536] = 1461, + [1537] = 1460, [1538] = 1538, - [1539] = 1536, - [1540] = 1540, - [1541] = 1536, - [1542] = 1536, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, + [1539] = 1539, + [1540] = 1017, + [1541] = 1497, + [1542] = 1542, + [1543] = 1497, + [1544] = 1503, + [1545] = 1522, + [1546] = 1474, + [1547] = 1475, [1548] = 1548, [1549] = 1549, - [1550] = 1550, - [1551] = 1551, + [1550] = 1549, + [1551] = 1549, [1552] = 1552, - [1553] = 1545, - [1554] = 1545, - [1555] = 1545, - [1556] = 1556, + [1553] = 1553, + [1554] = 1549, + [1555] = 1549, + [1556] = 1090, [1557] = 1557, - [1558] = 1558, - [1559] = 1545, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, + [1558] = 1557, + [1559] = 1559, + [1560] = 1557, + [1561] = 1559, + [1562] = 1559, + [1563] = 1559, + [1564] = 1557, + [1565] = 1559, + [1566] = 1557, [1567] = 1567, [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1571, - [1573] = 1571, - [1574] = 1574, + [1572] = 1572, + [1573] = 1573, + [1574] = 1572, [1575] = 1575, - [1576] = 1571, - [1577] = 1577, + [1576] = 1572, + [1577] = 1572, [1578] = 1578, [1579] = 1579, - [1580] = 1571, + [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, [1584] = 1584, - [1585] = 1585, + [1585] = 1583, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1585, - [1590] = 1585, - [1591] = 1586, - [1592] = 1587, - [1593] = 1586, - [1594] = 1585, + [1589] = 1589, + [1590] = 1590, + [1591] = 1584, + [1592] = 1583, + [1593] = 1593, + [1594] = 1594, [1595] = 1595, - [1596] = 1587, - [1597] = 1587, - [1598] = 1586, - [1599] = 1599, - [1600] = 1587, - [1601] = 1586, - [1602] = 1599, - [1603] = 1585, - [1604] = 1583, + [1596] = 1583, + [1597] = 1583, + [1598] = 1583, + [1599] = 1584, + [1600] = 1600, + [1601] = 1584, + [1602] = 1602, + [1603] = 1583, + [1604] = 1584, [1605] = 1605, [1606] = 1606, [1607] = 1607, [1608] = 1608, - [1609] = 1609, + [1609] = 1607, [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1609, + [1615] = 1615, [1616] = 1616, - [1617] = 1609, - [1618] = 1618, + [1617] = 1617, + [1618] = 1607, [1619] = 1619, - [1620] = 1620, - [1621] = 1621, + [1620] = 1607, + [1621] = 1607, [1622] = 1622, [1623] = 1623, - [1624] = 1609, + [1624] = 1624, [1625] = 1625, [1626] = 1626, [1627] = 1627, @@ -4771,86 +4799,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1629] = 1629, [1630] = 1630, [1631] = 1631, - [1632] = 1609, + [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1632, [1635] = 1635, [1636] = 1636, [1637] = 1637, [1638] = 1638, - [1639] = 1639, - [1640] = 1640, + [1639] = 1632, + [1640] = 1632, [1641] = 1641, [1642] = 1642, [1643] = 1643, [1644] = 1644, [1645] = 1645, - [1646] = 1646, + [1646] = 1632, [1647] = 1647, [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1652, + [1652] = 1650, [1653] = 1653, [1654] = 1654, [1655] = 1655, [1656] = 1656, [1657] = 1657, - [1658] = 1658, - [1659] = 1625, - [1660] = 1660, - [1661] = 1661, - [1662] = 1662, - [1663] = 1663, - [1664] = 1656, - [1665] = 1665, - [1666] = 1666, - [1667] = 1660, - [1668] = 1656, - [1669] = 1662, - [1670] = 1656, - [1671] = 1671, - [1672] = 1672, + [1658] = 1650, + [1659] = 1659, + [1660] = 1649, + [1661] = 1650, + [1662] = 1649, + [1663] = 1654, + [1664] = 1654, + [1665] = 1649, + [1666] = 1650, + [1667] = 1654, + [1668] = 1653, + [1669] = 1654, + [1670] = 1670, + [1671] = 1649, + [1672] = 1657, [1673] = 1673, [1674] = 1674, - [1675] = 1656, + [1675] = 1675, [1676] = 1676, [1677] = 1677, - [1678] = 1678, + [1678] = 1673, [1679] = 1679, - [1680] = 1610, - [1681] = 1656, - [1682] = 1611, + [1680] = 1680, + [1681] = 1681, + [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 1687, + [1687] = 1680, [1688] = 1688, - [1689] = 1689, - [1690] = 1656, - [1691] = 1691, + [1689] = 1673, + [1690] = 1685, + [1691] = 1680, [1692] = 1692, - [1693] = 1637, - [1694] = 1694, + [1693] = 1685, + [1694] = 1685, [1695] = 1695, [1696] = 1696, - [1697] = 1697, + [1697] = 1685, [1698] = 1698, - [1699] = 1699, + [1699] = 1680, [1700] = 1700, [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1704, + [1704] = 1673, [1705] = 1705, [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1709, + [1709] = 1673, [1710] = 1710, - [1711] = 1711, + [1711] = 1680, [1712] = 1712, [1713] = 1713, [1714] = 1714, @@ -4859,72 +4887,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1717] = 1717, [1718] = 1718, [1719] = 1719, - [1720] = 1674, + [1720] = 1720, [1721] = 1721, - [1722] = 1715, - [1723] = 1716, - [1724] = 1717, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, [1725] = 1725, [1726] = 1726, - [1727] = 1716, + [1727] = 1727, [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1721, - [1732] = 1716, - [1733] = 1721, + [1731] = 1731, + [1732] = 1732, + [1733] = 1733, [1734] = 1734, [1735] = 1735, [1736] = 1736, [1737] = 1737, - [1738] = 1725, + [1738] = 1676, [1739] = 1739, - [1740] = 1728, - [1741] = 1717, + [1740] = 1740, + [1741] = 1741, [1742] = 1742, - [1743] = 1716, - [1744] = 1730, - [1745] = 1736, + [1743] = 1743, + [1744] = 1744, + [1745] = 1740, [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1725, - [1750] = 1736, - [1751] = 1730, - [1752] = 1752, - [1753] = 1736, - [1754] = 1754, - [1755] = 1715, - [1756] = 1725, - [1757] = 1730, + [1747] = 1740, + [1748] = 1746, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1740, + [1753] = 1753, + [1754] = 1753, + [1755] = 1755, + [1756] = 1753, + [1757] = 1753, [1758] = 1758, - [1759] = 1717, - [1760] = 1760, - [1761] = 1737, - [1762] = 1737, - [1763] = 1728, - [1764] = 1736, + [1759] = 1692, + [1760] = 1753, + [1761] = 1761, + [1762] = 1762, + [1763] = 1753, + [1764] = 1764, [1765] = 1765, - [1766] = 1717, - [1767] = 1767, - [1768] = 1730, - [1769] = 1737, - [1770] = 1737, - [1771] = 1716, - [1772] = 1772, + [1766] = 1677, + [1767] = 1740, + [1768] = 1768, + [1769] = 1753, + [1770] = 1770, + [1771] = 1771, + [1772] = 1740, [1773] = 1773, - [1774] = 1721, - [1775] = 1775, - [1776] = 1721, - [1777] = 1737, + [1774] = 1774, + [1775] = 1749, + [1776] = 1776, + [1777] = 1777, [1778] = 1778, - [1779] = 1737, - [1780] = 1737, - [1781] = 1728, - [1782] = 1715, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1740, [1783] = 1783, [1784] = 1784, - [1785] = 1737, + [1785] = 1785, [1786] = 1786, [1787] = 1787, [1788] = 1788, @@ -4941,504 +4969,627 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1799] = 1799, [1800] = 1800, [1801] = 1801, - [1802] = 1802, + [1802] = 1735, [1803] = 1803, [1804] = 1804, [1805] = 1805, [1806] = 1806, [1807] = 1807, - [1808] = 1625, - [1809] = 1809, - [1810] = 1787, - [1811] = 1804, + [1808] = 1807, + [1809] = 1804, + [1810] = 1810, + [1811] = 1811, [1812] = 1812, [1813] = 1813, - [1814] = 1814, - [1815] = 1786, + [1814] = 1813, + [1815] = 1815, [1816] = 1816, [1817] = 1817, - [1818] = 1804, + [1818] = 1817, [1819] = 1819, [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, [1824] = 1824, - [1825] = 1788, - [1826] = 1826, + [1825] = 1820, + [1826] = 1807, [1827] = 1827, - [1828] = 1828, - [1829] = 1829, + [1828] = 1807, + [1829] = 1777, [1830] = 1830, - [1831] = 1805, + [1831] = 1816, [1832] = 1832, [1833] = 1833, - [1834] = 1830, - [1835] = 1803, + [1834] = 1817, + [1835] = 1804, [1836] = 1836, - [1837] = 1837, - [1838] = 1824, - [1839] = 1799, - [1840] = 1840, - [1841] = 1821, - [1842] = 1842, - [1843] = 1803, + [1837] = 1816, + [1838] = 1838, + [1839] = 1820, + [1840] = 1807, + [1841] = 1841, + [1842] = 1805, + [1843] = 1817, [1844] = 1844, - [1845] = 1788, - [1846] = 1804, - [1847] = 1847, + [1845] = 1816, + [1846] = 1846, + [1847] = 1807, [1848] = 1848, - [1849] = 1824, - [1850] = 1809, - [1851] = 1807, - [1852] = 1806, - [1853] = 1786, - [1854] = 1805, - [1855] = 1824, - [1856] = 1809, - [1857] = 1807, - [1858] = 1806, - [1859] = 1859, - [1860] = 1786, - [1861] = 1824, - [1862] = 1862, - [1863] = 1863, - [1864] = 1809, - [1865] = 1807, - [1866] = 1806, - [1867] = 1799, + [1849] = 1820, + [1850] = 1850, + [1851] = 1813, + [1852] = 1852, + [1853] = 1817, + [1854] = 1854, + [1855] = 1813, + [1856] = 1805, + [1857] = 1821, + [1858] = 1820, + [1859] = 1821, + [1860] = 1819, + [1861] = 1861, + [1862] = 1819, + [1863] = 1813, + [1864] = 1864, + [1865] = 1865, + [1866] = 1807, + [1867] = 1867, [1868] = 1868, - [1869] = 1869, - [1870] = 1786, - [1871] = 1868, - [1872] = 1806, + [1869] = 1807, + [1870] = 1805, + [1871] = 1821, + [1872] = 1819, [1873] = 1807, - [1874] = 1809, + [1874] = 1816, [1875] = 1875, - [1876] = 1788, - [1877] = 1877, - [1878] = 1833, + [1876] = 1805, + [1877] = 1804, + [1878] = 1817, [1879] = 1879, [1880] = 1880, - [1881] = 1786, + [1881] = 1881, [1882] = 1882, - [1883] = 1788, - [1884] = 1879, - [1885] = 1824, + [1883] = 1882, + [1884] = 1884, + [1885] = 1885, [1886] = 1886, - [1887] = 1830, - [1888] = 1830, - [1889] = 1829, - [1890] = 1793, - [1891] = 1827, - [1892] = 1812, - [1893] = 1824, - [1894] = 1809, - [1895] = 1806, - [1896] = 1807, - [1897] = 1789, - [1898] = 1807, - [1899] = 1806, - [1900] = 1823, - [1901] = 1797, - [1902] = 1801, - [1903] = 1802, - [1904] = 1875, - [1905] = 1821, - [1906] = 1809, - [1907] = 1786, - [1908] = 1908, + [1887] = 1887, + [1888] = 1888, + [1889] = 1882, + [1890] = 1881, + [1891] = 1886, + [1892] = 1892, + [1893] = 1893, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1885, + [1904] = 1904, + [1905] = 1905, + [1906] = 1879, + [1907] = 1902, + [1908] = 1902, [1909] = 1909, - [1910] = 1910, + [1910] = 1899, [1911] = 1911, - [1912] = 1911, - [1913] = 1913, + [1912] = 1885, + [1913] = 1880, [1914] = 1914, [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 1918, + [1918] = 1879, [1919] = 1919, - [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 1923, + [1920] = 1885, + [1921] = 1902, + [1922] = 1879, + [1923] = 1899, [1924] = 1924, - [1925] = 1925, + [1925] = 1924, [1926] = 1926, - [1927] = 1920, - [1928] = 1925, - [1929] = 1929, - [1930] = 1922, - [1931] = 1923, - [1932] = 1925, - [1933] = 1929, - [1934] = 1911, - [1935] = 1910, + [1927] = 1900, + [1928] = 1928, + [1929] = 1896, + [1930] = 1882, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, + [1934] = 1934, + [1935] = 1899, [1936] = 1936, - [1937] = 1937, - [1938] = 1922, - [1939] = 1924, - [1940] = 1923, - [1941] = 1921, - [1942] = 1925, - [1943] = 1929, - [1944] = 1922, - [1945] = 1945, - [1946] = 1946, - [1947] = 1936, - [1948] = 1910, - [1949] = 1924, - [1950] = 1923, + [1937] = 1892, + [1938] = 1938, + [1939] = 1915, + [1940] = 1881, + [1941] = 1881, + [1942] = 1888, + [1943] = 1892, + [1944] = 1885, + [1945] = 1902, + [1946] = 1879, + [1947] = 1882, + [1948] = 1899, + [1949] = 1900, + [1950] = 1892, [1951] = 1951, - [1952] = 1921, - [1953] = 1918, - [1954] = 1954, + [1952] = 1952, + [1953] = 1953, + [1954] = 1892, [1955] = 1955, [1956] = 1956, - [1957] = 1957, - [1958] = 1913, - [1959] = 1959, - [1960] = 1960, - [1961] = 1924, + [1957] = 1884, + [1958] = 1958, + [1959] = 1900, + [1960] = 1881, + [1961] = 1882, [1962] = 1962, - [1963] = 1925, - [1964] = 1964, - [1965] = 1936, - [1966] = 1929, - [1967] = 1921, - [1968] = 1922, - [1969] = 1969, - [1970] = 1936, - [1971] = 1925, - [1972] = 1972, - [1973] = 1913, + [1963] = 1924, + [1964] = 1900, + [1965] = 1965, + [1966] = 1966, + [1967] = 1967, + [1968] = 1968, + [1969] = 1896, + [1970] = 1970, + [1971] = 1971, + [1972] = 1896, + [1973] = 1677, [1974] = 1974, - [1975] = 1913, - [1976] = 1922, - [1977] = 1910, - [1978] = 1921, - [1979] = 1920, - [1980] = 1920, - [1981] = 1924, - [1982] = 1982, - [1983] = 1924, - [1984] = 1957, - [1985] = 1923, - [1986] = 1921, - [1987] = 1918, + [1975] = 1975, + [1976] = 1879, + [1977] = 1977, + [1978] = 1926, + [1979] = 1979, + [1980] = 1880, + [1981] = 1884, + [1982] = 1953, + [1983] = 1983, + [1984] = 1984, + [1985] = 1892, + [1986] = 1899, + [1987] = 1887, [1988] = 1988, - [1989] = 1911, - [1990] = 1990, - [1991] = 1913, - [1992] = 1911, - [1993] = 1911, - [1994] = 1913, - [1995] = 1911, - [1996] = 1996, - [1997] = 1913, - [1998] = 1913, - [1999] = 1910, - [2000] = 1929, - [2001] = 1936, - [2002] = 1910, - [2003] = 1913, - [2004] = 2004, - [2005] = 1911, - [2006] = 1920, - [2007] = 1911, - [2008] = 1936, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, + [1989] = 1988, + [1990] = 1893, + [1991] = 1896, + [1992] = 1938, + [1993] = 1900, + [1994] = 1955, + [1995] = 1899, + [1996] = 1881, + [1997] = 1879, + [1998] = 1928, + [1999] = 1902, + [2000] = 1931, + [2001] = 1897, + [2002] = 1900, + [2003] = 1926, + [2004] = 1977, + [2005] = 1902, + [2006] = 1885, + [2007] = 1983, + [2008] = 1885, + [2009] = 1882, + [2010] = 1881, + [2011] = 1901, + [2012] = 1892, [2013] = 2013, - [2014] = 2014, - [2015] = 2015, + [2014] = 1914, + [2015] = 1915, [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2014, - [2020] = 2020, + [2017] = 1955, + [2018] = 1915, + [2019] = 2019, + [2020] = 1955, [2021] = 2021, [2022] = 2022, - [2023] = 2015, + [2023] = 2023, [2024] = 2024, [2025] = 2025, [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 2027, - [2030] = 2017, - [2031] = 2026, + [2029] = 2029, + [2030] = 2030, + [2031] = 2027, [2032] = 2032, - [2033] = 2033, + [2033] = 2026, [2034] = 2034, [2035] = 2035, - [2036] = 2013, + [2036] = 2036, [2037] = 2037, - [2038] = 2037, + [2038] = 2038, [2039] = 2039, [2040] = 2040, - [2041] = 2014, - [2042] = 2024, + [2041] = 2041, + [2042] = 2030, [2043] = 2043, - [2044] = 2044, - [2045] = 2037, + [2044] = 2037, + [2045] = 2030, [2046] = 2046, - [2047] = 2032, + [2047] = 2047, [2048] = 2048, - [2049] = 2049, - [2050] = 2013, - [2051] = 2051, - [2052] = 2037, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2014, + [2049] = 2038, + [2050] = 2050, + [2051] = 2026, + [2052] = 2048, + [2053] = 2039, + [2054] = 2030, + [2055] = 2035, + [2056] = 2046, [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2032, - [2061] = 2013, - [2062] = 2012, - [2063] = 2014, - [2064] = 2037, - [2065] = 2033, - [2066] = 2032, - [2067] = 2013, - [2068] = 2013, - [2069] = 2014, - [2070] = 2070, - [2071] = 2010, - [2072] = 2072, - [2073] = 2032, - [2074] = 2074, - [2075] = 2025, - [2076] = 2076, - [2077] = 2028, - [2078] = 2026, - [2079] = 2027, - [2080] = 2080, - [2081] = 2081, + [2058] = 2047, + [2059] = 2038, + [2060] = 2060, + [2061] = 2039, + [2062] = 2048, + [2063] = 2037, + [2064] = 2064, + [2065] = 2065, + [2066] = 2030, + [2067] = 2046, + [2068] = 2038, + [2069] = 2027, + [2070] = 2039, + [2071] = 2048, + [2072] = 2037, + [2073] = 2047, + [2074] = 2034, + [2075] = 2035, + [2076] = 2046, + [2077] = 2040, + [2078] = 2040, + [2079] = 2041, + [2080] = 2030, + [2081] = 2046, [2082] = 2082, [2083] = 2083, [2084] = 2084, - [2085] = 2085, + [2085] = 2035, [2086] = 2086, - [2087] = 2033, - [2088] = 2088, - [2089] = 2086, - [2090] = 2028, - [2091] = 2085, - [2092] = 2035, - [2093] = 2093, + [2087] = 2087, + [2088] = 2038, + [2089] = 2038, + [2090] = 2047, + [2091] = 2091, + [2092] = 2092, + [2093] = 2026, [2094] = 2094, [2095] = 2095, [2096] = 2096, - [2097] = 802, - [2098] = 2033, - [2099] = 2024, - [2100] = 2100, - [2101] = 2049, - [2102] = 2081, - [2103] = 2103, - [2104] = 2032, - [2105] = 2021, - [2106] = 2106, - [2107] = 2095, - [2108] = 2020, - [2109] = 2109, + [2097] = 2039, + [2098] = 2026, + [2099] = 2048, + [2100] = 2037, + [2101] = 2034, + [2102] = 2102, + [2103] = 2035, + [2104] = 2026, + [2105] = 2035, + [2106] = 2037, + [2107] = 2040, + [2108] = 2026, + [2109] = 2039, [2110] = 2035, - [2111] = 2111, - [2112] = 2095, - [2113] = 2084, - [2114] = 2114, - [2115] = 2115, - [2116] = 2015, - [2117] = 2117, - [2118] = 2106, - [2119] = 2119, + [2111] = 2027, + [2112] = 2035, + [2113] = 2113, + [2114] = 2027, + [2115] = 2035, + [2116] = 2116, + [2117] = 2026, + [2118] = 2027, + [2119] = 2040, [2120] = 2120, - [2121] = 2012, - [2122] = 2058, - [2123] = 2037, - [2124] = 2084, + [2121] = 2040, + [2122] = 2047, + [2123] = 2026, + [2124] = 2124, [2125] = 2125, - [2126] = 2017, + [2126] = 2126, [2127] = 2127, [2128] = 2128, - [2129] = 2085, + [2129] = 2129, [2130] = 2130, [2131] = 2131, [2132] = 2132, - [2133] = 2133, - [2134] = 2021, + [2133] = 2131, + [2134] = 2134, [2135] = 2135, [2136] = 2136, - [2137] = 2131, - [2138] = 2033, - [2139] = 2070, - [2140] = 2028, - [2141] = 2086, - [2142] = 2032, - [2143] = 2028, - [2144] = 2086, - [2145] = 2145, - [2146] = 2018, - [2147] = 2147, - [2148] = 2049, - [2149] = 2017, - [2150] = 2053, - [2151] = 2151, - [2152] = 2015, - [2153] = 2014, - [2154] = 1219, - [2155] = 2072, - [2156] = 2084, - [2157] = 1224, - [2158] = 2158, - [2159] = 2055, - [2160] = 2059, - [2161] = 2085, - [2162] = 2081, - [2163] = 2080, - [2164] = 2109, - [2165] = 2147, + [2137] = 1267, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2142, + [2143] = 2142, + [2144] = 2144, + [2145] = 2140, + [2146] = 2131, + [2147] = 2141, + [2148] = 2148, + [2149] = 2125, + [2150] = 2150, + [2151] = 2138, + [2152] = 2152, + [2153] = 2139, + [2154] = 2141, + [2155] = 2155, + [2156] = 2142, + [2157] = 2157, + [2158] = 2138, + [2159] = 2159, + [2160] = 2160, + [2161] = 2131, + [2162] = 2162, + [2163] = 2163, + [2164] = 2139, + [2165] = 2135, [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2013, - [2170] = 2170, - [2171] = 2051, + [2167] = 2130, + [2168] = 2138, + [2169] = 2141, + [2170] = 2127, + [2171] = 2131, [2172] = 2172, - [2173] = 2024, - [2174] = 2120, - [2175] = 2106, - [2176] = 2058, - [2177] = 2177, - [2178] = 2032, + [2173] = 2173, + [2174] = 2138, + [2175] = 2141, + [2176] = 2129, + [2177] = 2131, + [2178] = 2178, [2179] = 2179, - [2180] = 2084, + [2180] = 2180, [2181] = 2181, - [2182] = 2010, - [2183] = 2072, - [2184] = 801, + [2182] = 2131, + [2183] = 2132, + [2184] = 2184, [2185] = 2185, - [2186] = 1220, - [2187] = 2021, - [2188] = 2188, - [2189] = 2033, - [2190] = 2080, - [2191] = 2032, - [2192] = 2192, - [2193] = 2070, + [2186] = 2186, + [2187] = 2187, + [2188] = 2181, + [2189] = 2189, + [2190] = 2150, + [2191] = 2191, + [2192] = 832, + [2193] = 2193, [2194] = 2194, - [2195] = 2195, - [2196] = 2049, - [2197] = 2106, - [2198] = 2013, + [2195] = 2139, + [2196] = 2196, + [2197] = 2197, + [2198] = 2198, [2199] = 2199, - [2200] = 2120, - [2201] = 2095, - [2202] = 2058, - [2203] = 2203, - [2204] = 2021, - [2205] = 2205, + [2200] = 2142, + [2201] = 2186, + [2202] = 2131, + [2203] = 2152, + [2204] = 2204, + [2205] = 2135, [2206] = 2206, - [2207] = 2207, - [2208] = 2010, - [2209] = 2072, - [2210] = 2033, + [2207] = 2140, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, [2211] = 2211, - [2212] = 2035, + [2212] = 2212, [2213] = 2213, - [2214] = 2080, - [2215] = 2215, + [2214] = 2141, + [2215] = 2185, [2216] = 2216, [2217] = 2217, - [2218] = 2017, + [2218] = 2184, [2219] = 2219, [2220] = 2220, - [2221] = 2081, - [2222] = 2053, - [2223] = 2059, - [2224] = 2015, - [2225] = 2014, - [2226] = 2010, + [2221] = 2139, + [2222] = 2157, + [2223] = 2223, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, [2227] = 2227, [2228] = 2228, - [2229] = 2115, - [2230] = 2010, - [2231] = 2010, - [2232] = 2010, - [2233] = 2053, - [2234] = 2080, - [2235] = 2085, - [2236] = 2086, + [2229] = 2228, + [2230] = 2224, + [2231] = 2144, + [2232] = 2142, + [2233] = 2233, + [2234] = 2234, + [2235] = 2138, + [2236] = 2236, [2237] = 2237, - [2238] = 2238, - [2239] = 2238, + [2238] = 2132, + [2239] = 2239, [2240] = 2240, - [2241] = 2228, - [2242] = 2055, - [2243] = 2028, + [2241] = 2241, + [2242] = 2242, + [2243] = 2243, [2244] = 2244, - [2245] = 2033, - [2246] = 2055, - [2247] = 2247, - [2248] = 2248, - [2249] = 2082, - [2250] = 2027, - [2251] = 2251, - [2252] = 2252, - [2253] = 2253, - [2254] = 2037, + [2245] = 2163, + [2246] = 2246, + [2247] = 2191, + [2248] = 2187, + [2249] = 2194, + [2250] = 2162, + [2251] = 2186, + [2252] = 2159, + [2253] = 831, + [2254] = 2185, [2255] = 2255, - [2256] = 2022, - [2257] = 2058, - [2258] = 2252, - [2259] = 2095, - [2260] = 2035, - [2261] = 2238, - [2262] = 2026, - [2263] = 2263, - [2264] = 2082, - [2265] = 2265, - [2266] = 2266, - [2267] = 2128, - [2268] = 2268, - [2269] = 2037, - [2270] = 2270, - [2271] = 2120, - [2272] = 2082, - [2273] = 2273, - [2274] = 2251, - [2275] = 2059, - [2276] = 2058, - [2277] = 1230, + [2256] = 2184, + [2257] = 2148, + [2258] = 2191, + [2259] = 2259, + [2260] = 2260, + [2261] = 2261, + [2262] = 2130, + [2263] = 2132, + [2264] = 2125, + [2265] = 2144, + [2266] = 2155, + [2267] = 2179, + [2268] = 2180, + [2269] = 2269, + [2270] = 2126, + [2271] = 2271, + [2272] = 2272, + [2273] = 2155, + [2274] = 2142, + [2275] = 2150, + [2276] = 2181, + [2277] = 2277, [2278] = 2278, - [2279] = 2027, - [2280] = 2082, - [2281] = 2024, - [2282] = 2282, + [2279] = 2141, + [2280] = 2280, + [2281] = 2127, + [2282] = 2152, [2283] = 2283, [2284] = 2284, - [2285] = 2238, - [2286] = 2012, - [2287] = 2181, - [2288] = 2026, - [2289] = 2014, - [2290] = 2238, - [2291] = 2291, - [2292] = 2072, - [2293] = 2238, - [2294] = 2012, - [2295] = 2013, - [2296] = 2227, - [2297] = 2297, - [2298] = 2010, - [2299] = 2219, + [2285] = 2129, + [2286] = 2286, + [2287] = 2277, + [2288] = 2228, + [2289] = 2148, + [2290] = 2144, + [2291] = 2132, + [2292] = 2292, + [2293] = 2129, + [2294] = 2260, + [2295] = 2138, + [2296] = 2130, + [2297] = 2194, + [2298] = 2179, + [2299] = 2180, + [2300] = 2142, + [2301] = 2144, + [2302] = 2138, + [2303] = 2139, + [2304] = 2162, + [2305] = 2194, + [2306] = 2181, + [2307] = 2219, + [2308] = 2163, + [2309] = 2309, + [2310] = 2310, + [2311] = 1273, + [2312] = 2152, + [2313] = 2313, + [2314] = 2314, + [2315] = 2150, + [2316] = 2140, + [2317] = 2228, + [2318] = 2162, + [2319] = 2144, + [2320] = 2163, + [2321] = 2141, + [2322] = 2322, + [2323] = 2323, + [2324] = 1264, + [2325] = 2325, + [2326] = 2326, + [2327] = 2179, + [2328] = 2180, + [2329] = 2135, + [2330] = 2330, + [2331] = 2331, + [2332] = 2135, + [2333] = 2181, + [2334] = 2334, + [2335] = 2335, + [2336] = 2148, + [2337] = 2125, + [2338] = 2191, + [2339] = 2125, + [2340] = 2340, + [2341] = 2187, + [2342] = 2148, + [2343] = 2150, + [2344] = 2152, + [2345] = 2186, + [2346] = 2139, + [2347] = 2157, + [2348] = 2179, + [2349] = 2349, + [2350] = 2185, + [2351] = 2187, + [2352] = 2179, + [2353] = 2179, + [2354] = 2179, + [2355] = 2138, + [2356] = 2184, + [2357] = 2194, + [2358] = 2358, + [2359] = 2359, + [2360] = 2313, + [2361] = 2361, + [2362] = 2362, + [2363] = 2284, + [2364] = 2162, + [2365] = 2163, + [2366] = 2241, + [2367] = 2139, + [2368] = 2325, + [2369] = 2369, + [2370] = 2370, + [2371] = 2217, + [2372] = 2135, + [2373] = 2373, + [2374] = 2141, + [2375] = 2130, + [2376] = 2242, + [2377] = 2140, + [2378] = 2280, + [2379] = 2379, + [2380] = 2132, + [2381] = 2199, + [2382] = 2382, + [2383] = 2155, + [2384] = 2313, + [2385] = 2385, + [2386] = 2386, + [2387] = 2217, + [2388] = 2388, + [2389] = 2126, + [2390] = 2390, + [2391] = 2132, + [2392] = 2392, + [2393] = 2393, + [2394] = 2142, + [2395] = 2217, + [2396] = 2396, + [2397] = 1271, + [2398] = 2132, + [2399] = 2334, + [2400] = 2400, + [2401] = 2401, + [2402] = 2155, + [2403] = 2217, + [2404] = 2131, + [2405] = 2405, + [2406] = 2406, + [2407] = 2407, + [2408] = 2313, + [2409] = 2409, + [2410] = 2286, + [2411] = 2129, + [2412] = 2126, + [2413] = 2313, + [2414] = 2127, + [2415] = 2180, + [2416] = 2313, + [2417] = 2246, + [2418] = 2127, + [2419] = 2283, + [2420] = 2420, + [2421] = 2179, + [2422] = 2278, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9251,19 +9402,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 17: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) END_STATE(); case 18: - if (lookahead == '\n') SKIP(71) + if (lookahead == '\n') SKIP(70) if (lookahead == '\r') SKIP(17) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); END_STATE(); case 19: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) END_STATE(); case 20: - if (lookahead == '\n') SKIP(70) + if (lookahead == '\n') SKIP(71) if (lookahead == '\r') SKIP(19) if (lookahead == 'U') ADVANCE(135); if (lookahead == 'u') ADVANCE(127); @@ -9305,22 +9456,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(127); END_STATE(); case 29: - if (lookahead == '\n') SKIP(59) + if (lookahead == '\n') SKIP(31) END_STATE(); case 30: - if (lookahead == '\n') SKIP(59) + if (lookahead == '\n') SKIP(31) if (lookahead == '\r') SKIP(29) - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(127); END_STATE(); case 31: - if (lookahead == '\n') SKIP(33) - END_STATE(); - case 32: - if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') SKIP(31) - END_STATE(); - case 33: if (lookahead == '\n') ADVANCE(150); if (lookahead == '!') ADVANCE(82); if (lookahead == '%') ADVANCE(229); @@ -9333,11 +9475,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(247); if (lookahead == '=') ADVANCE(83); if (lookahead == '>') ADVANCE(243); - if (lookahead == '\\') SKIP(32) + if (lookahead == '\\') SKIP(30) if (lookahead == '^') ADVANCE(235); if (lookahead == '|') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33) + lookahead == ' ') SKIP(31) + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(59) + END_STATE(); + case 33: + if (lookahead == '\n') SKIP(59) + if (lookahead == '\r') SKIP(32) + if (lookahead == 'U') ADVANCE(135); + if (lookahead == 'u') ADVANCE(127); END_STATE(); case 34: if (lookahead == '\n') SKIP(69) @@ -9376,17 +9527,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(318); END_STATE(); case 40: - if (lookahead == '\n') SKIP(72) - if (lookahead == '\'') ADVANCE(303); - if (lookahead == '/') ADVANCE(306); - if (lookahead == '\\') ADVANCE(305); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(307); - if (lookahead != 0) ADVANCE(304); - END_STATE(); - case 41: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(45); + if (lookahead == '\r') ADVANCE(44); if (lookahead == '(') ADVANCE(145); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9394,25 +9536,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 42: + case 41: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(45); + if (lookahead == '\r') ADVANCE(44); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); - case 43: + case 42: if (lookahead == '\n') ADVANCE(143); - if (lookahead == '\r') ADVANCE(44); + if (lookahead == '\r') ADVANCE(43); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); if (lookahead == '\\') SKIP(47) if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(73) END_STATE(); - case 44: + case 43: if (lookahead == '\n') ADVANCE(143); if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(74); @@ -9420,7 +9562,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(73) END_STATE(); - case 45: + case 44: if (lookahead == '\n') ADVANCE(143); if (lookahead == '/') ADVANCE(170); if (lookahead == '\\') ADVANCE(168); @@ -9428,6 +9570,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(80) if (lookahead != 0) ADVANCE(171); END_STATE(); + case 45: + if (lookahead == '\n') SKIP(72) + if (lookahead == '\'') ADVANCE(303); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '\\') ADVANCE(305); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(307); + if (lookahead != 0) ADVANCE(304); + END_STATE(); case 46: if (lookahead == '\n') SKIP(73) END_STATE(); @@ -9688,7 +9839,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(285); if (lookahead == 'L') ADVANCE(333); if (lookahead == 'U') ADVANCE(334); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\\') ADVANCE(33); if (lookahead == 'u') ADVANCE(332); if (lookahead == '~') ADVANCE(214); if (('\t' <= lookahead && lookahead <= '\r') || @@ -9927,7 +10078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(20); + if (lookahead == '\\') ADVANCE(18); if (lookahead == '}') ADVANCE(257); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70) @@ -9937,7 +10088,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_identifier_character_set_2(lookahead)) ADVANCE(336); if (lookahead == '/') ADVANCE(74); if (lookahead == '[') ADVANCE(87); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '\\') ADVANCE(20); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71) END_STATE(); @@ -13312,7 +13463,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [13] = {.lex_state = 58}, [14] = {.lex_state = 58}, [15] = {.lex_state = 58}, - [16] = {.lex_state = 58}, + [16] = {.lex_state = 55}, [17] = {.lex_state = 58}, [18] = {.lex_state = 58}, [19] = {.lex_state = 58}, @@ -13322,19 +13473,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 58}, [24] = {.lex_state = 58}, [25] = {.lex_state = 58}, - [26] = {.lex_state = 55}, + [26] = {.lex_state = 58}, [27] = {.lex_state = 58}, [28] = {.lex_state = 140}, - [29] = {.lex_state = 57}, + [29] = {.lex_state = 140}, [30] = {.lex_state = 140}, - [31] = {.lex_state = 57}, + [31] = {.lex_state = 140}, [32] = {.lex_state = 140}, [33] = {.lex_state = 140}, [34] = {.lex_state = 140}, - [35] = {.lex_state = 57}, - [36] = {.lex_state = 140}, + [35] = {.lex_state = 140}, + [36] = {.lex_state = 57}, [37] = {.lex_state = 140}, - [38] = {.lex_state = 140}, + [38] = {.lex_state = 57}, [39] = {.lex_state = 140}, [40] = {.lex_state = 140}, [41] = {.lex_state = 140}, @@ -13343,7 +13494,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 140}, [45] = {.lex_state = 140}, [46] = {.lex_state = 140}, - [47] = {.lex_state = 140}, + [47] = {.lex_state = 57}, [48] = {.lex_state = 140}, [49] = {.lex_state = 140}, [50] = {.lex_state = 140}, @@ -13360,21 +13511,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 58}, [62] = {.lex_state = 58}, [63] = {.lex_state = 58}, - [64] = {.lex_state = 140}, + [64] = {.lex_state = 57}, [65] = {.lex_state = 140}, [66] = {.lex_state = 57}, [67] = {.lex_state = 57}, - [68] = {.lex_state = 140}, + [68] = {.lex_state = 57}, [69] = {.lex_state = 140}, [70] = {.lex_state = 140}, - [71] = {.lex_state = 57}, - [72] = {.lex_state = 140}, + [71] = {.lex_state = 140}, + [72] = {.lex_state = 57}, [73] = {.lex_state = 140}, [74] = {.lex_state = 140}, [75] = {.lex_state = 140}, [76] = {.lex_state = 140}, - [77] = {.lex_state = 57}, - [78] = {.lex_state = 57}, + [77] = {.lex_state = 140}, + [78] = {.lex_state = 140}, [79] = {.lex_state = 140}, [80] = {.lex_state = 140}, [81] = {.lex_state = 140}, @@ -13392,8 +13543,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [93] = {.lex_state = 55}, [94] = {.lex_state = 55}, [95] = {.lex_state = 55}, - [96] = {.lex_state = 55}, - [97] = {.lex_state = 140}, + [96] = {.lex_state = 140}, + [97] = {.lex_state = 55}, [98] = {.lex_state = 55}, [99] = {.lex_state = 55}, [100] = {.lex_state = 55}, @@ -13403,7 +13554,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 55}, [105] = {.lex_state = 55}, [106] = {.lex_state = 55}, - [107] = {.lex_state = 55}, + [107] = {.lex_state = 140}, [108] = {.lex_state = 55}, [109] = {.lex_state = 55}, [110] = {.lex_state = 55}, @@ -13413,7 +13564,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [114] = {.lex_state = 55}, [115] = {.lex_state = 55}, [116] = {.lex_state = 55}, - [117] = {.lex_state = 140}, + [117] = {.lex_state = 55}, [118] = {.lex_state = 55}, [119] = {.lex_state = 55}, [120] = {.lex_state = 55}, @@ -13454,7 +13605,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 55}, [156] = {.lex_state = 55}, [157] = {.lex_state = 55}, - [158] = {.lex_state = 58}, + [158] = {.lex_state = 55}, [159] = {.lex_state = 55}, [160] = {.lex_state = 55}, [161] = {.lex_state = 55}, @@ -13462,11 +13613,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 55}, [164] = {.lex_state = 55}, [165] = {.lex_state = 55}, - [166] = {.lex_state = 58}, - [167] = {.lex_state = 58}, - [168] = {.lex_state = 58}, - [169] = {.lex_state = 58}, - [170] = {.lex_state = 58}, + [166] = {.lex_state = 55}, + [167] = {.lex_state = 55}, + [168] = {.lex_state = 55}, + [169] = {.lex_state = 55}, + [170] = {.lex_state = 55}, [171] = {.lex_state = 58}, [172] = {.lex_state = 58}, [173] = {.lex_state = 58}, @@ -13523,10 +13674,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [224] = {.lex_state = 58}, [225] = {.lex_state = 58}, [226] = {.lex_state = 58}, - [227] = {.lex_state = 53}, - [228] = {.lex_state = 53}, - [229] = {.lex_state = 140}, - [230] = {.lex_state = 57}, + [227] = {.lex_state = 58}, + [228] = {.lex_state = 58}, + [229] = {.lex_state = 58}, + [230] = {.lex_state = 140}, [231] = {.lex_state = 58}, [232] = {.lex_state = 58}, [233] = {.lex_state = 58}, @@ -13534,36 +13685,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [235] = {.lex_state = 58}, [236] = {.lex_state = 58}, [237] = {.lex_state = 58}, - [238] = {.lex_state = 58}, + [238] = {.lex_state = 53}, [239] = {.lex_state = 58}, - [240] = {.lex_state = 58}, + [240] = {.lex_state = 53}, [241] = {.lex_state = 58}, - [242] = {.lex_state = 140}, - [243] = {.lex_state = 57}, + [242] = {.lex_state = 58}, + [243] = {.lex_state = 140}, [244] = {.lex_state = 57}, - [245] = {.lex_state = 140}, - [246] = {.lex_state = 140}, - [247] = {.lex_state = 140}, - [248] = {.lex_state = 140}, - [249] = {.lex_state = 140}, - [250] = {.lex_state = 140}, - [251] = {.lex_state = 140}, - [252] = {.lex_state = 140}, - [253] = {.lex_state = 140}, - [254] = {.lex_state = 140}, + [245] = {.lex_state = 58}, + [246] = {.lex_state = 58}, + [247] = {.lex_state = 58}, + [248] = {.lex_state = 58}, + [249] = {.lex_state = 58}, + [250] = {.lex_state = 58}, + [251] = {.lex_state = 58}, + [252] = {.lex_state = 58}, + [253] = {.lex_state = 58}, + [254] = {.lex_state = 58}, [255] = {.lex_state = 140}, - [256] = {.lex_state = 57}, - [257] = {.lex_state = 57}, + [256] = {.lex_state = 140}, + [257] = {.lex_state = 140}, [258] = {.lex_state = 140}, - [259] = {.lex_state = 57}, + [259] = {.lex_state = 140}, [260] = {.lex_state = 140}, [261] = {.lex_state = 140}, - [262] = {.lex_state = 57}, + [262] = {.lex_state = 140}, [263] = {.lex_state = 140}, [264] = {.lex_state = 140}, [265] = {.lex_state = 140}, [266] = {.lex_state = 140}, - [267] = {.lex_state = 57}, + [267] = {.lex_state = 140}, [268] = {.lex_state = 140}, [269] = {.lex_state = 140}, [270] = {.lex_state = 140}, @@ -13572,30 +13723,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [273] = {.lex_state = 140}, [274] = {.lex_state = 140}, [275] = {.lex_state = 140}, - [276] = {.lex_state = 57}, + [276] = {.lex_state = 140}, [277] = {.lex_state = 140}, - [278] = {.lex_state = 57}, + [278] = {.lex_state = 140}, [279] = {.lex_state = 140}, [280] = {.lex_state = 140}, [281] = {.lex_state = 140}, [282] = {.lex_state = 140}, [283] = {.lex_state = 140}, [284] = {.lex_state = 140}, - [285] = {.lex_state = 57}, + [285] = {.lex_state = 140}, [286] = {.lex_state = 140}, - [287] = {.lex_state = 57}, - [288] = {.lex_state = 57}, + [287] = {.lex_state = 140}, + [288] = {.lex_state = 140}, [289] = {.lex_state = 140}, - [290] = {.lex_state = 57}, + [290] = {.lex_state = 140}, [291] = {.lex_state = 140}, [292] = {.lex_state = 140}, - [293] = {.lex_state = 57}, - [294] = {.lex_state = 57}, + [293] = {.lex_state = 140}, + [294] = {.lex_state = 140}, [295] = {.lex_state = 140}, [296] = {.lex_state = 140}, [297] = {.lex_state = 140}, [298] = {.lex_state = 140}, - [299] = {.lex_state = 57}, + [299] = {.lex_state = 140}, [300] = {.lex_state = 140}, [301] = {.lex_state = 140}, [302] = {.lex_state = 140}, @@ -13605,179 +13756,179 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [306] = {.lex_state = 140}, [307] = {.lex_state = 140}, [308] = {.lex_state = 140}, - [309] = {.lex_state = 57}, + [309] = {.lex_state = 140}, [310] = {.lex_state = 140}, [311] = {.lex_state = 140}, [312] = {.lex_state = 140}, [313] = {.lex_state = 140}, [314] = {.lex_state = 140}, - [315] = {.lex_state = 57}, - [316] = {.lex_state = 57}, + [315] = {.lex_state = 140}, + [316] = {.lex_state = 140}, [317] = {.lex_state = 140}, - [318] = {.lex_state = 57}, + [318] = {.lex_state = 140}, [319] = {.lex_state = 57}, [320] = {.lex_state = 57}, - [321] = {.lex_state = 57}, - [322] = {.lex_state = 57}, + [321] = {.lex_state = 140}, + [322] = {.lex_state = 140}, [323] = {.lex_state = 57}, - [324] = {.lex_state = 57}, + [324] = {.lex_state = 140}, [325] = {.lex_state = 140}, [326] = {.lex_state = 57}, [327] = {.lex_state = 57}, [328] = {.lex_state = 57}, - [329] = {.lex_state = 57}, + [329] = {.lex_state = 140}, [330] = {.lex_state = 140}, - [331] = {.lex_state = 57}, - [332] = {.lex_state = 140}, + [331] = {.lex_state = 140}, + [332] = {.lex_state = 57}, [333] = {.lex_state = 57}, [334] = {.lex_state = 140}, [335] = {.lex_state = 57}, [336] = {.lex_state = 140}, [337] = {.lex_state = 57}, - [338] = {.lex_state = 57}, - [339] = {.lex_state = 57}, + [338] = {.lex_state = 140}, + [339] = {.lex_state = 140}, [340] = {.lex_state = 57}, - [341] = {.lex_state = 57}, - [342] = {.lex_state = 140}, + [341] = {.lex_state = 140}, + [342] = {.lex_state = 57}, [343] = {.lex_state = 140}, [344] = {.lex_state = 57}, - [345] = {.lex_state = 140}, - [346] = {.lex_state = 57}, + [345] = {.lex_state = 57}, + [346] = {.lex_state = 140}, [347] = {.lex_state = 140}, - [348] = {.lex_state = 140}, - [349] = {.lex_state = 140}, + [348] = {.lex_state = 57}, + [349] = {.lex_state = 57}, [350] = {.lex_state = 140}, [351] = {.lex_state = 140}, - [352] = {.lex_state = 140}, - [353] = {.lex_state = 140}, + [352] = {.lex_state = 57}, + [353] = {.lex_state = 57}, [354] = {.lex_state = 140}, - [355] = {.lex_state = 140}, - [356] = {.lex_state = 140}, - [357] = {.lex_state = 57}, + [355] = {.lex_state = 57}, + [356] = {.lex_state = 57}, + [357] = {.lex_state = 140}, [358] = {.lex_state = 57}, - [359] = {.lex_state = 140}, - [360] = {.lex_state = 140}, + [359] = {.lex_state = 57}, + [360] = {.lex_state = 57}, [361] = {.lex_state = 57}, [362] = {.lex_state = 57}, - [363] = {.lex_state = 140}, + [363] = {.lex_state = 57}, [364] = {.lex_state = 57}, [365] = {.lex_state = 140}, [366] = {.lex_state = 140}, [367] = {.lex_state = 140}, [368] = {.lex_state = 140}, [369] = {.lex_state = 140}, - [370] = {.lex_state = 140}, + [370] = {.lex_state = 57}, [371] = {.lex_state = 140}, - [372] = {.lex_state = 57}, - [373] = {.lex_state = 140}, + [372] = {.lex_state = 140}, + [373] = {.lex_state = 57}, [374] = {.lex_state = 140}, [375] = {.lex_state = 140}, [376] = {.lex_state = 140}, [377] = {.lex_state = 140}, - [378] = {.lex_state = 140}, + [378] = {.lex_state = 57}, [379] = {.lex_state = 140}, [380] = {.lex_state = 140}, [381] = {.lex_state = 140}, - [382] = {.lex_state = 140}, + [382] = {.lex_state = 57}, [383] = {.lex_state = 140}, - [384] = {.lex_state = 140}, - [385] = {.lex_state = 140}, - [386] = {.lex_state = 140}, - [387] = {.lex_state = 140}, - [388] = {.lex_state = 140}, - [389] = {.lex_state = 140}, - [390] = {.lex_state = 140}, - [391] = {.lex_state = 140}, - [392] = {.lex_state = 140}, - [393] = {.lex_state = 140}, - [394] = {.lex_state = 140}, - [395] = {.lex_state = 140}, - [396] = {.lex_state = 140}, - [397] = {.lex_state = 140}, - [398] = {.lex_state = 140}, - [399] = {.lex_state = 140}, - [400] = {.lex_state = 140}, + [384] = {.lex_state = 57}, + [385] = {.lex_state = 57}, + [386] = {.lex_state = 57}, + [387] = {.lex_state = 57}, + [388] = {.lex_state = 57}, + [389] = {.lex_state = 57}, + [390] = {.lex_state = 57}, + [391] = {.lex_state = 57}, + [392] = {.lex_state = 57}, + [393] = {.lex_state = 57}, + [394] = {.lex_state = 57}, + [395] = {.lex_state = 57}, + [396] = {.lex_state = 57}, + [397] = {.lex_state = 57}, + [398] = {.lex_state = 57}, + [399] = {.lex_state = 57}, + [400] = {.lex_state = 57}, [401] = {.lex_state = 57}, - [402] = {.lex_state = 140}, + [402] = {.lex_state = 57}, [403] = {.lex_state = 140}, [404] = {.lex_state = 140}, [405] = {.lex_state = 140}, - [406] = {.lex_state = 57}, - [407] = {.lex_state = 140}, + [406] = {.lex_state = 140}, + [407] = {.lex_state = 57}, [408] = {.lex_state = 140}, [409] = {.lex_state = 140}, - [410] = {.lex_state = 140}, - [411] = {.lex_state = 57}, - [412] = {.lex_state = 54}, + [410] = {.lex_state = 57}, + [411] = {.lex_state = 140}, + [412] = {.lex_state = 57}, [413] = {.lex_state = 57}, [414] = {.lex_state = 140}, [415] = {.lex_state = 140}, [416] = {.lex_state = 140}, [417] = {.lex_state = 140}, [418] = {.lex_state = 57}, - [419] = {.lex_state = 140}, - [420] = {.lex_state = 140}, - [421] = {.lex_state = 140}, - [422] = {.lex_state = 140}, + [419] = {.lex_state = 57}, + [420] = {.lex_state = 57}, + [421] = {.lex_state = 57}, + [422] = {.lex_state = 57}, [423] = {.lex_state = 140}, - [424] = {.lex_state = 140}, + [424] = {.lex_state = 57}, [425] = {.lex_state = 57}, - [426] = {.lex_state = 140}, + [426] = {.lex_state = 57}, [427] = {.lex_state = 57}, [428] = {.lex_state = 140}, [429] = {.lex_state = 140}, - [430] = {.lex_state = 57}, - [431] = {.lex_state = 140}, - [432] = {.lex_state = 57}, + [430] = {.lex_state = 140}, + [431] = {.lex_state = 57}, + [432] = {.lex_state = 140}, [433] = {.lex_state = 57}, - [434] = {.lex_state = 140}, + [434] = {.lex_state = 57}, [435] = {.lex_state = 140}, - [436] = {.lex_state = 140}, - [437] = {.lex_state = 57}, - [438] = {.lex_state = 57}, + [436] = {.lex_state = 57}, + [437] = {.lex_state = 140}, + [438] = {.lex_state = 140}, [439] = {.lex_state = 140}, - [440] = {.lex_state = 140}, + [440] = {.lex_state = 57}, [441] = {.lex_state = 140}, - [442] = {.lex_state = 140}, + [442] = {.lex_state = 57}, [443] = {.lex_state = 140}, [444] = {.lex_state = 140}, - [445] = {.lex_state = 140}, - [446] = {.lex_state = 140}, + [445] = {.lex_state = 57}, + [446] = {.lex_state = 57}, [447] = {.lex_state = 57}, [448] = {.lex_state = 140}, - [449] = {.lex_state = 57}, - [450] = {.lex_state = 140}, - [451] = {.lex_state = 140}, + [449] = {.lex_state = 140}, + [450] = {.lex_state = 57}, + [451] = {.lex_state = 57}, [452] = {.lex_state = 140}, - [453] = {.lex_state = 57}, + [453] = {.lex_state = 140}, [454] = {.lex_state = 140}, - [455] = {.lex_state = 57}, - [456] = {.lex_state = 57}, + [455] = {.lex_state = 140}, + [456] = {.lex_state = 140}, [457] = {.lex_state = 140}, [458] = {.lex_state = 140}, [459] = {.lex_state = 140}, - [460] = {.lex_state = 57}, + [460] = {.lex_state = 140}, [461] = {.lex_state = 140}, - [462] = {.lex_state = 57}, - [463] = {.lex_state = 57}, - [464] = {.lex_state = 57}, - [465] = {.lex_state = 140}, + [462] = {.lex_state = 140}, + [463] = {.lex_state = 140}, + [464] = {.lex_state = 140}, + [465] = {.lex_state = 57}, [466] = {.lex_state = 140}, - [467] = {.lex_state = 140}, - [468] = {.lex_state = 57}, - [469] = {.lex_state = 140}, + [467] = {.lex_state = 57}, + [468] = {.lex_state = 140}, + [469] = {.lex_state = 57}, [470] = {.lex_state = 140}, [471] = {.lex_state = 57}, - [472] = {.lex_state = 57}, - [473] = {.lex_state = 57}, + [472] = {.lex_state = 140}, + [473] = {.lex_state = 140}, [474] = {.lex_state = 140}, - [475] = {.lex_state = 57}, + [475] = {.lex_state = 140}, [476] = {.lex_state = 140}, [477] = {.lex_state = 140}, [478] = {.lex_state = 140}, - [479] = {.lex_state = 140}, + [479] = {.lex_state = 54}, [480] = {.lex_state = 140}, - [481] = {.lex_state = 53}, + [481] = {.lex_state = 140}, [482] = {.lex_state = 140}, [483] = {.lex_state = 140}, [484] = {.lex_state = 140}, @@ -13805,7 +13956,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [506] = {.lex_state = 140}, [507] = {.lex_state = 140}, [508] = {.lex_state = 140}, - [509] = {.lex_state = 140}, + [509] = {.lex_state = 53}, [510] = {.lex_state = 140}, [511] = {.lex_state = 140}, [512] = {.lex_state = 140}, @@ -13819,26 +13970,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [520] = {.lex_state = 140}, [521] = {.lex_state = 140}, [522] = {.lex_state = 140}, - [523] = {.lex_state = 53}, + [523] = {.lex_state = 140}, [524] = {.lex_state = 140}, [525] = {.lex_state = 140}, - [526] = {.lex_state = 53}, - [527] = {.lex_state = 54}, - [528] = {.lex_state = 53}, + [526] = {.lex_state = 140}, + [527] = {.lex_state = 140}, + [528] = {.lex_state = 140}, [529] = {.lex_state = 140}, [530] = {.lex_state = 140}, - [531] = {.lex_state = 60}, - [532] = {.lex_state = 60}, - [533] = {.lex_state = 60}, - [534] = {.lex_state = 60}, - [535] = {.lex_state = 60}, - [536] = {.lex_state = 60}, - [537] = {.lex_state = 60}, - [538] = {.lex_state = 60}, - [539] = {.lex_state = 60}, - [540] = {.lex_state = 60}, - [541] = {.lex_state = 60}, - [542] = {.lex_state = 60}, + [531] = {.lex_state = 140}, + [532] = {.lex_state = 140}, + [533] = {.lex_state = 140}, + [534] = {.lex_state = 140}, + [535] = {.lex_state = 140}, + [536] = {.lex_state = 140}, + [537] = {.lex_state = 140}, + [538] = {.lex_state = 140}, + [539] = {.lex_state = 140}, + [540] = {.lex_state = 140}, + [541] = {.lex_state = 140}, + [542] = {.lex_state = 140}, [543] = {.lex_state = 140}, [544] = {.lex_state = 140}, [545] = {.lex_state = 140}, @@ -13850,87 +14001,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 140}, [552] = {.lex_state = 140}, [553] = {.lex_state = 140}, - [554] = {.lex_state = 140}, - [555] = {.lex_state = 140}, + [554] = {.lex_state = 53}, + [555] = {.lex_state = 53}, [556] = {.lex_state = 140}, - [557] = {.lex_state = 140}, - [558] = {.lex_state = 140}, + [557] = {.lex_state = 54}, + [558] = {.lex_state = 53}, [559] = {.lex_state = 140}, - [560] = {.lex_state = 64}, - [561] = {.lex_state = 64}, - [562] = {.lex_state = 64}, - [563] = {.lex_state = 64}, - [564] = {.lex_state = 64}, - [565] = {.lex_state = 64}, - [566] = {.lex_state = 64}, - [567] = {.lex_state = 64}, - [568] = {.lex_state = 64}, - [569] = {.lex_state = 65}, - [570] = {.lex_state = 65}, - [571] = {.lex_state = 64}, - [572] = {.lex_state = 65}, - [573] = {.lex_state = 65}, - [574] = {.lex_state = 65}, - [575] = {.lex_state = 65}, - [576] = {.lex_state = 65}, - [577] = {.lex_state = 65}, - [578] = {.lex_state = 65}, - [579] = {.lex_state = 65}, - [580] = {.lex_state = 65}, - [581] = {.lex_state = 65}, + [560] = {.lex_state = 60}, + [561] = {.lex_state = 60}, + [562] = {.lex_state = 140}, + [563] = {.lex_state = 60}, + [564] = {.lex_state = 60}, + [565] = {.lex_state = 60}, + [566] = {.lex_state = 60}, + [567] = {.lex_state = 60}, + [568] = {.lex_state = 60}, + [569] = {.lex_state = 60}, + [570] = {.lex_state = 60}, + [571] = {.lex_state = 60}, + [572] = {.lex_state = 60}, + [573] = {.lex_state = 64}, + [574] = {.lex_state = 140}, + [575] = {.lex_state = 140}, + [576] = {.lex_state = 140}, + [577] = {.lex_state = 140}, + [578] = {.lex_state = 140}, + [579] = {.lex_state = 140}, + [580] = {.lex_state = 140}, + [581] = {.lex_state = 140}, [582] = {.lex_state = 140}, [583] = {.lex_state = 140}, [584] = {.lex_state = 140}, - [585] = {.lex_state = 65}, + [585] = {.lex_state = 140}, [586] = {.lex_state = 140}, [587] = {.lex_state = 140}, [588] = {.lex_state = 140}, [589] = {.lex_state = 140}, [590] = {.lex_state = 140}, - [591] = {.lex_state = 140}, - [592] = {.lex_state = 140}, - [593] = {.lex_state = 140}, - [594] = {.lex_state = 140}, - [595] = {.lex_state = 140}, - [596] = {.lex_state = 140}, - [597] = {.lex_state = 140}, - [598] = {.lex_state = 140}, - [599] = {.lex_state = 140}, - [600] = {.lex_state = 140}, - [601] = {.lex_state = 140}, - [602] = {.lex_state = 140}, - [603] = {.lex_state = 140}, - [604] = {.lex_state = 140}, - [605] = {.lex_state = 140}, - [606] = {.lex_state = 140}, - [607] = {.lex_state = 140}, - [608] = {.lex_state = 140}, - [609] = {.lex_state = 140}, - [610] = {.lex_state = 140}, - [611] = {.lex_state = 140}, - [612] = {.lex_state = 140}, - [613] = {.lex_state = 71}, + [591] = {.lex_state = 64}, + [592] = {.lex_state = 64}, + [593] = {.lex_state = 64}, + [594] = {.lex_state = 64}, + [595] = {.lex_state = 64}, + [596] = {.lex_state = 64}, + [597] = {.lex_state = 64}, + [598] = {.lex_state = 64}, + [599] = {.lex_state = 64}, + [600] = {.lex_state = 65}, + [601] = {.lex_state = 64}, + [602] = {.lex_state = 65}, + [603] = {.lex_state = 65}, + [604] = {.lex_state = 65}, + [605] = {.lex_state = 65}, + [606] = {.lex_state = 65}, + [607] = {.lex_state = 65}, + [608] = {.lex_state = 65}, + [609] = {.lex_state = 65}, + [610] = {.lex_state = 65}, + [611] = {.lex_state = 65}, + [612] = {.lex_state = 65}, + [613] = {.lex_state = 140}, [614] = {.lex_state = 140}, [615] = {.lex_state = 140}, - [616] = {.lex_state = 140}, + [616] = {.lex_state = 65}, [617] = {.lex_state = 140}, [618] = {.lex_state = 140}, - [619] = {.lex_state = 70}, + [619] = {.lex_state = 140}, [620] = {.lex_state = 140}, [621] = {.lex_state = 140}, [622] = {.lex_state = 140}, [623] = {.lex_state = 140}, [624] = {.lex_state = 140}, [625] = {.lex_state = 140}, - [626] = {.lex_state = 71}, + [626] = {.lex_state = 140}, [627] = {.lex_state = 140}, - [628] = {.lex_state = 70}, + [628] = {.lex_state = 140}, [629] = {.lex_state = 140}, [630] = {.lex_state = 140}, [631] = {.lex_state = 140}, - [632] = {.lex_state = 71}, + [632] = {.lex_state = 140}, [633] = {.lex_state = 140}, - [634] = {.lex_state = 70}, + [634] = {.lex_state = 140}, [635] = {.lex_state = 140}, [636] = {.lex_state = 140}, [637] = {.lex_state = 140}, @@ -13945,8 +14096,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [646] = {.lex_state = 140}, [647] = {.lex_state = 140}, [648] = {.lex_state = 140}, - [649] = {.lex_state = 64}, - [650] = {.lex_state = 140}, + [649] = {.lex_state = 140}, + [650] = {.lex_state = 70}, [651] = {.lex_state = 140}, [652] = {.lex_state = 140}, [653] = {.lex_state = 140}, @@ -13954,17 +14105,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [655] = {.lex_state = 140}, [656] = {.lex_state = 140}, [657] = {.lex_state = 140}, - [658] = {.lex_state = 140}, + [658] = {.lex_state = 71}, [659] = {.lex_state = 140}, - [660] = {.lex_state = 140}, + [660] = {.lex_state = 70}, [661] = {.lex_state = 140}, [662] = {.lex_state = 140}, [663] = {.lex_state = 140}, [664] = {.lex_state = 140}, - [665] = {.lex_state = 140}, + [665] = {.lex_state = 71}, [666] = {.lex_state = 140}, - [667] = {.lex_state = 140}, - [668] = {.lex_state = 140}, + [667] = {.lex_state = 70}, + [668] = {.lex_state = 71}, [669] = {.lex_state = 140}, [670] = {.lex_state = 140}, [671] = {.lex_state = 140}, @@ -14087,408 +14238,408 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [788] = {.lex_state = 140}, [789] = {.lex_state = 140}, [790] = {.lex_state = 140}, - [791] = {.lex_state = 60}, - [792] = {.lex_state = 60}, - [793] = {.lex_state = 64}, - [794] = {.lex_state = 64}, - [795] = {.lex_state = 60}, - [796] = {.lex_state = 64}, - [797] = {.lex_state = 64}, - [798] = {.lex_state = 64}, - [799] = {.lex_state = 60}, - [800] = {.lex_state = 60}, - [801] = {.lex_state = 60}, - [802] = {.lex_state = 60}, - [803] = {.lex_state = 62}, - [804] = {.lex_state = 62}, - [805] = {.lex_state = 62}, - [806] = {.lex_state = 62}, - [807] = {.lex_state = 62}, - [808] = {.lex_state = 62}, - [809] = {.lex_state = 62}, - [810] = {.lex_state = 62}, - [811] = {.lex_state = 62}, - [812] = {.lex_state = 62}, + [791] = {.lex_state = 140}, + [792] = {.lex_state = 140}, + [793] = {.lex_state = 140}, + [794] = {.lex_state = 140}, + [795] = {.lex_state = 140}, + [796] = {.lex_state = 140}, + [797] = {.lex_state = 140}, + [798] = {.lex_state = 140}, + [799] = {.lex_state = 140}, + [800] = {.lex_state = 140}, + [801] = {.lex_state = 140}, + [802] = {.lex_state = 140}, + [803] = {.lex_state = 140}, + [804] = {.lex_state = 140}, + [805] = {.lex_state = 140}, + [806] = {.lex_state = 140}, + [807] = {.lex_state = 140}, + [808] = {.lex_state = 140}, + [809] = {.lex_state = 140}, + [810] = {.lex_state = 140}, + [811] = {.lex_state = 140}, + [812] = {.lex_state = 140}, [813] = {.lex_state = 140}, - [814] = {.lex_state = 62}, + [814] = {.lex_state = 140}, [815] = {.lex_state = 140}, - [816] = {.lex_state = 60}, + [816] = {.lex_state = 140}, [817] = {.lex_state = 140}, - [818] = {.lex_state = 64}, - [819] = {.lex_state = 64}, - [820] = {.lex_state = 62}, - [821] = {.lex_state = 62}, + [818] = {.lex_state = 140}, + [819] = {.lex_state = 140}, + [820] = {.lex_state = 140}, + [821] = {.lex_state = 60}, [822] = {.lex_state = 64}, - [823] = {.lex_state = 62}, - [824] = {.lex_state = 64}, - [825] = {.lex_state = 64}, + [823] = {.lex_state = 64}, + [824] = {.lex_state = 60}, + [825] = {.lex_state = 60}, [826] = {.lex_state = 64}, - [827] = {.lex_state = 62}, - [828] = {.lex_state = 62}, - [829] = {.lex_state = 62}, - [830] = {.lex_state = 64}, - [831] = {.lex_state = 62}, - [832] = {.lex_state = 64}, + [827] = {.lex_state = 60}, + [828] = {.lex_state = 64}, + [829] = {.lex_state = 64}, + [830] = {.lex_state = 60}, + [831] = {.lex_state = 60}, + [832] = {.lex_state = 60}, [833] = {.lex_state = 62}, - [834] = {.lex_state = 64}, + [834] = {.lex_state = 62}, [835] = {.lex_state = 62}, [836] = {.lex_state = 62}, - [837] = {.lex_state = 64}, - [838] = {.lex_state = 64}, + [837] = {.lex_state = 62}, + [838] = {.lex_state = 62}, [839] = {.lex_state = 62}, - [840] = {.lex_state = 64}, - [841] = {.lex_state = 64}, + [840] = {.lex_state = 62}, + [841] = {.lex_state = 62}, [842] = {.lex_state = 62}, [843] = {.lex_state = 62}, [844] = {.lex_state = 64}, - [845] = {.lex_state = 64}, - [846] = {.lex_state = 64}, - [847] = {.lex_state = 62}, - [848] = {.lex_state = 64}, + [845] = {.lex_state = 60}, + [846] = {.lex_state = 140}, + [847] = {.lex_state = 140}, + [848] = {.lex_state = 140}, [849] = {.lex_state = 64}, - [850] = {.lex_state = 64}, + [850] = {.lex_state = 62}, [851] = {.lex_state = 64}, [852] = {.lex_state = 64}, [853] = {.lex_state = 64}, - [854] = {.lex_state = 62}, - [855] = {.lex_state = 62}, - [856] = {.lex_state = 64}, - [857] = {.lex_state = 64}, - [858] = {.lex_state = 63}, - [859] = {.lex_state = 63}, - [860] = {.lex_state = 62}, - [861] = {.lex_state = 64}, - [862] = {.lex_state = 63}, - [863] = {.lex_state = 60}, + [854] = {.lex_state = 64}, + [855] = {.lex_state = 64}, + [856] = {.lex_state = 62}, + [857] = {.lex_state = 62}, + [858] = {.lex_state = 62}, + [859] = {.lex_state = 62}, + [860] = {.lex_state = 64}, + [861] = {.lex_state = 62}, + [862] = {.lex_state = 64}, + [863] = {.lex_state = 64}, [864] = {.lex_state = 62}, - [865] = {.lex_state = 63}, + [865] = {.lex_state = 62}, [866] = {.lex_state = 62}, - [867] = {.lex_state = 60}, - [868] = {.lex_state = 62}, + [867] = {.lex_state = 64}, + [868] = {.lex_state = 64}, [869] = {.lex_state = 62}, [870] = {.lex_state = 62}, - [871] = {.lex_state = 61}, - [872] = {.lex_state = 61}, - [873] = {.lex_state = 60}, - [874] = {.lex_state = 61}, - [875] = {.lex_state = 61}, - [876] = {.lex_state = 61}, - [877] = {.lex_state = 61}, - [878] = {.lex_state = 140}, + [871] = {.lex_state = 64}, + [872] = {.lex_state = 62}, + [873] = {.lex_state = 64}, + [874] = {.lex_state = 64}, + [875] = {.lex_state = 64}, + [876] = {.lex_state = 64}, + [877] = {.lex_state = 64}, + [878] = {.lex_state = 64}, [879] = {.lex_state = 64}, [880] = {.lex_state = 64}, - [881] = {.lex_state = 61}, - [882] = {.lex_state = 64}, - [883] = {.lex_state = 64}, - [884] = {.lex_state = 64}, + [881] = {.lex_state = 64}, + [882] = {.lex_state = 62}, + [883] = {.lex_state = 62}, + [884] = {.lex_state = 62}, [885] = {.lex_state = 64}, - [886] = {.lex_state = 64}, - [887] = {.lex_state = 61}, + [886] = {.lex_state = 62}, + [887] = {.lex_state = 62}, [888] = {.lex_state = 64}, - [889] = {.lex_state = 64}, - [890] = {.lex_state = 64}, - [891] = {.lex_state = 60}, - [892] = {.lex_state = 60}, + [889] = {.lex_state = 62}, + [890] = {.lex_state = 60}, + [891] = {.lex_state = 62}, + [892] = {.lex_state = 63}, [893] = {.lex_state = 64}, - [894] = {.lex_state = 60}, - [895] = {.lex_state = 140}, + [894] = {.lex_state = 64}, + [895] = {.lex_state = 63}, [896] = {.lex_state = 60}, - [897] = {.lex_state = 64}, - [898] = {.lex_state = 60}, - [899] = {.lex_state = 60}, - [900] = {.lex_state = 60}, - [901] = {.lex_state = 62}, + [897] = {.lex_state = 63}, + [898] = {.lex_state = 64}, + [899] = {.lex_state = 62}, + [900] = {.lex_state = 62}, + [901] = {.lex_state = 63}, [902] = {.lex_state = 62}, - [903] = {.lex_state = 62}, - [904] = {.lex_state = 62}, - [905] = {.lex_state = 62}, - [906] = {.lex_state = 62}, - [907] = {.lex_state = 62}, - [908] = {.lex_state = 60}, - [909] = {.lex_state = 62}, - [910] = {.lex_state = 62}, - [911] = {.lex_state = 62}, - [912] = {.lex_state = 62}, - [913] = {.lex_state = 62}, + [903] = {.lex_state = 61}, + [904] = {.lex_state = 61}, + [905] = {.lex_state = 61}, + [906] = {.lex_state = 60}, + [907] = {.lex_state = 61}, + [908] = {.lex_state = 140}, + [909] = {.lex_state = 61}, + [910] = {.lex_state = 61}, + [911] = {.lex_state = 64}, + [912] = {.lex_state = 64}, + [913] = {.lex_state = 64}, [914] = {.lex_state = 64}, [915] = {.lex_state = 64}, - [916] = {.lex_state = 62}, - [917] = {.lex_state = 66}, - [918] = {.lex_state = 64}, + [916] = {.lex_state = 61}, + [917] = {.lex_state = 64}, + [918] = {.lex_state = 61}, [919] = {.lex_state = 64}, [920] = {.lex_state = 64}, [921] = {.lex_state = 64}, [922] = {.lex_state = 64}, - [923] = {.lex_state = 64}, + [923] = {.lex_state = 60}, [924] = {.lex_state = 64}, - [925] = {.lex_state = 64}, - [926] = {.lex_state = 64}, - [927] = {.lex_state = 66}, - [928] = {.lex_state = 64}, - [929] = {.lex_state = 66}, - [930] = {.lex_state = 66}, + [925] = {.lex_state = 60}, + [926] = {.lex_state = 140}, + [927] = {.lex_state = 60}, + [928] = {.lex_state = 60}, + [929] = {.lex_state = 64}, + [930] = {.lex_state = 64}, [931] = {.lex_state = 64}, - [932] = {.lex_state = 66}, - [933] = {.lex_state = 66}, - [934] = {.lex_state = 66}, - [935] = {.lex_state = 66}, - [936] = {.lex_state = 66}, - [937] = {.lex_state = 66}, - [938] = {.lex_state = 66}, - [939] = {.lex_state = 66}, - [940] = {.lex_state = 66}, - [941] = {.lex_state = 66}, - [942] = {.lex_state = 66}, - [943] = {.lex_state = 66}, - [944] = {.lex_state = 66}, - [945] = {.lex_state = 66}, - [946] = {.lex_state = 66}, - [947] = {.lex_state = 64}, - [948] = {.lex_state = 66}, - [949] = {.lex_state = 66}, - [950] = {.lex_state = 66}, - [951] = {.lex_state = 66}, - [952] = {.lex_state = 66}, - [953] = {.lex_state = 64}, - [954] = {.lex_state = 64}, - [955] = {.lex_state = 66}, - [956] = {.lex_state = 66}, - [957] = {.lex_state = 66}, + [932] = {.lex_state = 64}, + [933] = {.lex_state = 64}, + [934] = {.lex_state = 60}, + [935] = {.lex_state = 60}, + [936] = {.lex_state = 64}, + [937] = {.lex_state = 64}, + [938] = {.lex_state = 60}, + [939] = {.lex_state = 64}, + [940] = {.lex_state = 62}, + [941] = {.lex_state = 64}, + [942] = {.lex_state = 62}, + [943] = {.lex_state = 62}, + [944] = {.lex_state = 62}, + [945] = {.lex_state = 62}, + [946] = {.lex_state = 62}, + [947] = {.lex_state = 62}, + [948] = {.lex_state = 62}, + [949] = {.lex_state = 60}, + [950] = {.lex_state = 64}, + [951] = {.lex_state = 62}, + [952] = {.lex_state = 62}, + [953] = {.lex_state = 62}, + [954] = {.lex_state = 62}, + [955] = {.lex_state = 64}, + [956] = {.lex_state = 64}, + [957] = {.lex_state = 64}, [958] = {.lex_state = 66}, - [959] = {.lex_state = 66}, + [959] = {.lex_state = 64}, [960] = {.lex_state = 64}, [961] = {.lex_state = 64}, [962] = {.lex_state = 64}, - [963] = {.lex_state = 66}, + [963] = {.lex_state = 64}, [964] = {.lex_state = 66}, - [965] = {.lex_state = 66}, + [965] = {.lex_state = 64}, [966] = {.lex_state = 64}, - [967] = {.lex_state = 66}, - [968] = {.lex_state = 66}, - [969] = {.lex_state = 66}, + [967] = {.lex_state = 64}, + [968] = {.lex_state = 64}, + [969] = {.lex_state = 64}, [970] = {.lex_state = 66}, - [971] = {.lex_state = 66}, - [972] = {.lex_state = 66}, - [973] = {.lex_state = 66}, + [971] = {.lex_state = 64}, + [972] = {.lex_state = 64}, + [973] = {.lex_state = 64}, [974] = {.lex_state = 64}, [975] = {.lex_state = 64}, [976] = {.lex_state = 64}, [977] = {.lex_state = 64}, [978] = {.lex_state = 64}, - [979] = {.lex_state = 66}, - [980] = {.lex_state = 66}, - [981] = {.lex_state = 64}, + [979] = {.lex_state = 64}, + [980] = {.lex_state = 64}, + [981] = {.lex_state = 66}, [982] = {.lex_state = 64}, - [983] = {.lex_state = 66}, - [984] = {.lex_state = 66}, - [985] = {.lex_state = 66}, + [983] = {.lex_state = 62}, + [984] = {.lex_state = 64}, + [985] = {.lex_state = 64}, [986] = {.lex_state = 64}, [987] = {.lex_state = 66}, [988] = {.lex_state = 66}, - [989] = {.lex_state = 66}, + [989] = {.lex_state = 64}, [990] = {.lex_state = 66}, - [991] = {.lex_state = 66}, + [991] = {.lex_state = 64}, [992] = {.lex_state = 64}, - [993] = {.lex_state = 64}, - [994] = {.lex_state = 64}, + [993] = {.lex_state = 66}, + [994] = {.lex_state = 66}, [995] = {.lex_state = 66}, - [996] = {.lex_state = 64}, - [997] = {.lex_state = 60}, - [998] = {.lex_state = 60}, - [999] = {.lex_state = 65}, - [1000] = {.lex_state = 65}, - [1001] = {.lex_state = 65}, - [1002] = {.lex_state = 65}, - [1003] = {.lex_state = 65}, - [1004] = {.lex_state = 65}, - [1005] = {.lex_state = 65}, + [996] = {.lex_state = 66}, + [997] = {.lex_state = 66}, + [998] = {.lex_state = 64}, + [999] = {.lex_state = 66}, + [1000] = {.lex_state = 64}, + [1001] = {.lex_state = 66}, + [1002] = {.lex_state = 66}, + [1003] = {.lex_state = 64}, + [1004] = {.lex_state = 66}, + [1005] = {.lex_state = 66}, [1006] = {.lex_state = 64}, [1007] = {.lex_state = 64}, - [1008] = {.lex_state = 65}, - [1009] = {.lex_state = 65}, - [1010] = {.lex_state = 65}, - [1011] = {.lex_state = 65}, - [1012] = {.lex_state = 65}, - [1013] = {.lex_state = 60}, - [1014] = {.lex_state = 65}, - [1015] = {.lex_state = 65}, + [1008] = {.lex_state = 64}, + [1009] = {.lex_state = 64}, + [1010] = {.lex_state = 64}, + [1011] = {.lex_state = 64}, + [1012] = {.lex_state = 64}, + [1013] = {.lex_state = 64}, + [1014] = {.lex_state = 64}, + [1015] = {.lex_state = 64}, [1016] = {.lex_state = 64}, - [1017] = {.lex_state = 60}, - [1018] = {.lex_state = 64}, - [1019] = {.lex_state = 60}, - [1020] = {.lex_state = 60}, - [1021] = {.lex_state = 64}, - [1022] = {.lex_state = 65}, + [1017] = {.lex_state = 64}, + [1018] = {.lex_state = 66}, + [1019] = {.lex_state = 64}, + [1020] = {.lex_state = 64}, + [1021] = {.lex_state = 66}, + [1022] = {.lex_state = 64}, [1023] = {.lex_state = 64}, [1024] = {.lex_state = 64}, - [1025] = {.lex_state = 60}, - [1026] = {.lex_state = 60}, + [1025] = {.lex_state = 64}, + [1026] = {.lex_state = 64}, [1027] = {.lex_state = 64}, [1028] = {.lex_state = 64}, - [1029] = {.lex_state = 65}, - [1030] = {.lex_state = 65}, - [1031] = {.lex_state = 65}, - [1032] = {.lex_state = 60}, - [1033] = {.lex_state = 60}, - [1034] = {.lex_state = 60}, - [1035] = {.lex_state = 60}, - [1036] = {.lex_state = 60}, - [1037] = {.lex_state = 60}, - [1038] = {.lex_state = 60}, - [1039] = {.lex_state = 60}, - [1040] = {.lex_state = 60}, + [1029] = {.lex_state = 64}, + [1030] = {.lex_state = 64}, + [1031] = {.lex_state = 64}, + [1032] = {.lex_state = 66}, + [1033] = {.lex_state = 66}, + [1034] = {.lex_state = 64}, + [1035] = {.lex_state = 64}, + [1036] = {.lex_state = 64}, + [1037] = {.lex_state = 64}, + [1038] = {.lex_state = 64}, + [1039] = {.lex_state = 66}, + [1040] = {.lex_state = 64}, [1041] = {.lex_state = 64}, - [1042] = {.lex_state = 60}, - [1043] = {.lex_state = 64}, + [1042] = {.lex_state = 64}, + [1043] = {.lex_state = 66}, [1044] = {.lex_state = 64}, [1045] = {.lex_state = 64}, - [1046] = {.lex_state = 60}, - [1047] = {.lex_state = 64}, + [1046] = {.lex_state = 64}, + [1047] = {.lex_state = 66}, [1048] = {.lex_state = 64}, [1049] = {.lex_state = 64}, - [1050] = {.lex_state = 71}, + [1050] = {.lex_state = 66}, [1051] = {.lex_state = 64}, - [1052] = {.lex_state = 64}, - [1053] = {.lex_state = 71}, - [1054] = {.lex_state = 64}, - [1055] = {.lex_state = 70}, - [1056] = {.lex_state = 71}, - [1057] = {.lex_state = 71}, - [1058] = {.lex_state = 71}, - [1059] = {.lex_state = 71}, - [1060] = {.lex_state = 64}, - [1061] = {.lex_state = 71}, - [1062] = {.lex_state = 71}, - [1063] = {.lex_state = 71}, - [1064] = {.lex_state = 71}, - [1065] = {.lex_state = 71}, - [1066] = {.lex_state = 71}, - [1067] = {.lex_state = 71}, - [1068] = {.lex_state = 70}, - [1069] = {.lex_state = 60}, - [1070] = {.lex_state = 70}, - [1071] = {.lex_state = 70}, - [1072] = {.lex_state = 60}, - [1073] = {.lex_state = 64}, - [1074] = {.lex_state = 64}, - [1075] = {.lex_state = 64}, - [1076] = {.lex_state = 64}, - [1077] = {.lex_state = 70}, - [1078] = {.lex_state = 64}, - [1079] = {.lex_state = 70}, - [1080] = {.lex_state = 70}, - [1081] = {.lex_state = 64}, + [1052] = {.lex_state = 66}, + [1053] = {.lex_state = 66}, + [1054] = {.lex_state = 66}, + [1055] = {.lex_state = 66}, + [1056] = {.lex_state = 66}, + [1057] = {.lex_state = 66}, + [1058] = {.lex_state = 66}, + [1059] = {.lex_state = 64}, + [1060] = {.lex_state = 66}, + [1061] = {.lex_state = 64}, + [1062] = {.lex_state = 64}, + [1063] = {.lex_state = 66}, + [1064] = {.lex_state = 66}, + [1065] = {.lex_state = 66}, + [1066] = {.lex_state = 64}, + [1067] = {.lex_state = 64}, + [1068] = {.lex_state = 64}, + [1069] = {.lex_state = 64}, + [1070] = {.lex_state = 64}, + [1071] = {.lex_state = 66}, + [1072] = {.lex_state = 66}, + [1073] = {.lex_state = 66}, + [1074] = {.lex_state = 66}, + [1075] = {.lex_state = 66}, + [1076] = {.lex_state = 66}, + [1077] = {.lex_state = 66}, + [1078] = {.lex_state = 66}, + [1079] = {.lex_state = 66}, + [1080] = {.lex_state = 66}, + [1081] = {.lex_state = 66}, [1082] = {.lex_state = 64}, - [1083] = {.lex_state = 70}, - [1084] = {.lex_state = 70}, - [1085] = {.lex_state = 70}, - [1086] = {.lex_state = 60}, - [1087] = {.lex_state = 60}, - [1088] = {.lex_state = 70}, - [1089] = {.lex_state = 70}, - [1090] = {.lex_state = 71}, - [1091] = {.lex_state = 60}, - [1092] = {.lex_state = 71}, - [1093] = {.lex_state = 71}, - [1094] = {.lex_state = 70}, - [1095] = {.lex_state = 71}, - [1096] = {.lex_state = 71}, - [1097] = {.lex_state = 70}, - [1098] = {.lex_state = 70}, - [1099] = {.lex_state = 70}, - [1100] = {.lex_state = 70}, - [1101] = {.lex_state = 70}, - [1102] = {.lex_state = 64}, - [1103] = {.lex_state = 64}, + [1083] = {.lex_state = 64}, + [1084] = {.lex_state = 66}, + [1085] = {.lex_state = 64}, + [1086] = {.lex_state = 64}, + [1087] = {.lex_state = 66}, + [1088] = {.lex_state = 66}, + [1089] = {.lex_state = 64}, + [1090] = {.lex_state = 64}, + [1091] = {.lex_state = 64}, + [1092] = {.lex_state = 64}, + [1093] = {.lex_state = 64}, + [1094] = {.lex_state = 64}, + [1095] = {.lex_state = 65}, + [1096] = {.lex_state = 60}, + [1097] = {.lex_state = 65}, + [1098] = {.lex_state = 60}, + [1099] = {.lex_state = 60}, + [1100] = {.lex_state = 60}, + [1101] = {.lex_state = 60}, + [1102] = {.lex_state = 60}, + [1103] = {.lex_state = 65}, [1104] = {.lex_state = 64}, - [1105] = {.lex_state = 64}, - [1106] = {.lex_state = 64}, - [1107] = {.lex_state = 64}, - [1108] = {.lex_state = 64}, - [1109] = {.lex_state = 64}, - [1110] = {.lex_state = 64}, - [1111] = {.lex_state = 64}, + [1105] = {.lex_state = 65}, + [1106] = {.lex_state = 65}, + [1107] = {.lex_state = 65}, + [1108] = {.lex_state = 65}, + [1109] = {.lex_state = 65}, + [1110] = {.lex_state = 65}, + [1111] = {.lex_state = 65}, [1112] = {.lex_state = 64}, [1113] = {.lex_state = 64}, - [1114] = {.lex_state = 64}, - [1115] = {.lex_state = 64}, - [1116] = {.lex_state = 64}, - [1117] = {.lex_state = 140}, - [1118] = {.lex_state = 64}, - [1119] = {.lex_state = 140}, - [1120] = {.lex_state = 64}, + [1114] = {.lex_state = 65}, + [1115] = {.lex_state = 65}, + [1116] = {.lex_state = 65}, + [1117] = {.lex_state = 60}, + [1118] = {.lex_state = 65}, + [1119] = {.lex_state = 60}, + [1120] = {.lex_state = 60}, [1121] = {.lex_state = 64}, - [1122] = {.lex_state = 140}, - [1123] = {.lex_state = 64}, - [1124] = {.lex_state = 64}, - [1125] = {.lex_state = 64}, - [1126] = {.lex_state = 64}, - [1127] = {.lex_state = 64}, - [1128] = {.lex_state = 140}, - [1129] = {.lex_state = 140}, - [1130] = {.lex_state = 64}, - [1131] = {.lex_state = 64}, - [1132] = {.lex_state = 64}, - [1133] = {.lex_state = 64}, - [1134] = {.lex_state = 64}, - [1135] = {.lex_state = 64}, + [1122] = {.lex_state = 64}, + [1123] = {.lex_state = 65}, + [1124] = {.lex_state = 65}, + [1125] = {.lex_state = 65}, + [1126] = {.lex_state = 65}, + [1127] = {.lex_state = 60}, + [1128] = {.lex_state = 60}, + [1129] = {.lex_state = 60}, + [1130] = {.lex_state = 60}, + [1131] = {.lex_state = 60}, + [1132] = {.lex_state = 60}, + [1133] = {.lex_state = 60}, + [1134] = {.lex_state = 60}, + [1135] = {.lex_state = 60}, [1136] = {.lex_state = 64}, [1137] = {.lex_state = 64}, - [1138] = {.lex_state = 64}, - [1139] = {.lex_state = 64}, - [1140] = {.lex_state = 64}, - [1141] = {.lex_state = 64}, - [1142] = {.lex_state = 64}, - [1143] = {.lex_state = 64}, - [1144] = {.lex_state = 64}, - [1145] = {.lex_state = 64}, - [1146] = {.lex_state = 140}, - [1147] = {.lex_state = 64}, - [1148] = {.lex_state = 64}, - [1149] = {.lex_state = 64}, - [1150] = {.lex_state = 64}, - [1151] = {.lex_state = 64}, - [1152] = {.lex_state = 64}, + [1138] = {.lex_state = 60}, + [1139] = {.lex_state = 71}, + [1140] = {.lex_state = 71}, + [1141] = {.lex_state = 70}, + [1142] = {.lex_state = 70}, + [1143] = {.lex_state = 71}, + [1144] = {.lex_state = 71}, + [1145] = {.lex_state = 70}, + [1146] = {.lex_state = 70}, + [1147] = {.lex_state = 70}, + [1148] = {.lex_state = 71}, + [1149] = {.lex_state = 71}, + [1150] = {.lex_state = 70}, + [1151] = {.lex_state = 70}, + [1152] = {.lex_state = 60}, [1153] = {.lex_state = 64}, - [1154] = {.lex_state = 64}, - [1155] = {.lex_state = 64}, - [1156] = {.lex_state = 64}, - [1157] = {.lex_state = 64}, - [1158] = {.lex_state = 64}, - [1159] = {.lex_state = 64}, - [1160] = {.lex_state = 64}, - [1161] = {.lex_state = 62}, - [1162] = {.lex_state = 62}, - [1163] = {.lex_state = 62}, - [1164] = {.lex_state = 62}, - [1165] = {.lex_state = 62}, - [1166] = {.lex_state = 62}, - [1167] = {.lex_state = 62}, - [1168] = {.lex_state = 62}, - [1169] = {.lex_state = 64}, - [1170] = {.lex_state = 62}, - [1171] = {.lex_state = 62}, - [1172] = {.lex_state = 62}, - [1173] = {.lex_state = 62}, - [1174] = {.lex_state = 62}, - [1175] = {.lex_state = 64}, - [1176] = {.lex_state = 64}, - [1177] = {.lex_state = 64}, - [1178] = {.lex_state = 64}, - [1179] = {.lex_state = 64}, - [1180] = {.lex_state = 64}, - [1181] = {.lex_state = 64}, - [1182] = {.lex_state = 64}, - [1183] = {.lex_state = 64}, - [1184] = {.lex_state = 64}, - [1185] = {.lex_state = 64}, - [1186] = {.lex_state = 64}, - [1187] = {.lex_state = 64}, - [1188] = {.lex_state = 64}, - [1189] = {.lex_state = 64}, - [1190] = {.lex_state = 64}, - [1191] = {.lex_state = 64}, - [1192] = {.lex_state = 64}, + [1154] = {.lex_state = 71}, + [1155] = {.lex_state = 71}, + [1156] = {.lex_state = 71}, + [1157] = {.lex_state = 60}, + [1158] = {.lex_state = 71}, + [1159] = {.lex_state = 71}, + [1160] = {.lex_state = 71}, + [1161] = {.lex_state = 70}, + [1162] = {.lex_state = 70}, + [1163] = {.lex_state = 64}, + [1164] = {.lex_state = 70}, + [1165] = {.lex_state = 60}, + [1166] = {.lex_state = 64}, + [1167] = {.lex_state = 70}, + [1168] = {.lex_state = 70}, + [1169] = {.lex_state = 60}, + [1170] = {.lex_state = 71}, + [1171] = {.lex_state = 60}, + [1172] = {.lex_state = 71}, + [1173] = {.lex_state = 70}, + [1174] = {.lex_state = 70}, + [1175] = {.lex_state = 70}, + [1176] = {.lex_state = 71}, + [1177] = {.lex_state = 71}, + [1178] = {.lex_state = 70}, + [1179] = {.lex_state = 70}, + [1180] = {.lex_state = 71}, + [1181] = {.lex_state = 71}, + [1182] = {.lex_state = 70}, + [1183] = {.lex_state = 140}, + [1184] = {.lex_state = 140}, + [1185] = {.lex_state = 140}, + [1186] = {.lex_state = 140}, + [1187] = {.lex_state = 140}, + [1188] = {.lex_state = 140}, + [1189] = {.lex_state = 140}, + [1190] = {.lex_state = 140}, + [1191] = {.lex_state = 140}, + [1192] = {.lex_state = 140}, [1193] = {.lex_state = 64}, [1194] = {.lex_state = 64}, [1195] = {.lex_state = 64}, @@ -14497,694 +14648,694 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1198] = {.lex_state = 64}, [1199] = {.lex_state = 64}, [1200] = {.lex_state = 64}, - [1201] = {.lex_state = 66}, - [1202] = {.lex_state = 66}, - [1203] = {.lex_state = 64}, - [1204] = {.lex_state = 66}, - [1205] = {.lex_state = 64}, - [1206] = {.lex_state = 66}, - [1207] = {.lex_state = 66}, - [1208] = {.lex_state = 64}, - [1209] = {.lex_state = 64}, - [1210] = {.lex_state = 64}, - [1211] = {.lex_state = 66}, - [1212] = {.lex_state = 66}, - [1213] = {.lex_state = 66}, - [1214] = {.lex_state = 66}, - [1215] = {.lex_state = 66}, - [1216] = {.lex_state = 66}, - [1217] = {.lex_state = 66}, - [1218] = {.lex_state = 66}, - [1219] = {.lex_state = 65}, - [1220] = {.lex_state = 65}, + [1201] = {.lex_state = 62}, + [1202] = {.lex_state = 62}, + [1203] = {.lex_state = 62}, + [1204] = {.lex_state = 62}, + [1205] = {.lex_state = 62}, + [1206] = {.lex_state = 62}, + [1207] = {.lex_state = 62}, + [1208] = {.lex_state = 62}, + [1209] = {.lex_state = 62}, + [1210] = {.lex_state = 62}, + [1211] = {.lex_state = 62}, + [1212] = {.lex_state = 62}, + [1213] = {.lex_state = 62}, + [1214] = {.lex_state = 64}, + [1215] = {.lex_state = 64}, + [1216] = {.lex_state = 64}, + [1217] = {.lex_state = 64}, + [1218] = {.lex_state = 64}, + [1219] = {.lex_state = 64}, + [1220] = {.lex_state = 64}, [1221] = {.lex_state = 64}, [1222] = {.lex_state = 64}, [1223] = {.lex_state = 64}, - [1224] = {.lex_state = 65}, + [1224] = {.lex_state = 64}, [1225] = {.lex_state = 64}, [1226] = {.lex_state = 64}, [1227] = {.lex_state = 64}, [1228] = {.lex_state = 64}, [1229] = {.lex_state = 64}, - [1230] = {.lex_state = 65}, - [1231] = {.lex_state = 60}, + [1230] = {.lex_state = 64}, + [1231] = {.lex_state = 64}, [1232] = {.lex_state = 64}, - [1233] = {.lex_state = 60}, - [1234] = {.lex_state = 60}, - [1235] = {.lex_state = 60}, - [1236] = {.lex_state = 60}, - [1237] = {.lex_state = 60}, - [1238] = {.lex_state = 60}, - [1239] = {.lex_state = 60}, - [1240] = {.lex_state = 60}, - [1241] = {.lex_state = 60}, - [1242] = {.lex_state = 60}, - [1243] = {.lex_state = 60}, - [1244] = {.lex_state = 60}, + [1233] = {.lex_state = 64}, + [1234] = {.lex_state = 64}, + [1235] = {.lex_state = 64}, + [1236] = {.lex_state = 64}, + [1237] = {.lex_state = 64}, + [1238] = {.lex_state = 64}, + [1239] = {.lex_state = 64}, + [1240] = {.lex_state = 64}, + [1241] = {.lex_state = 64}, + [1242] = {.lex_state = 64}, + [1243] = {.lex_state = 64}, + [1244] = {.lex_state = 66}, [1245] = {.lex_state = 64}, [1246] = {.lex_state = 64}, - [1247] = {.lex_state = 64}, - [1248] = {.lex_state = 60}, - [1249] = {.lex_state = 60}, - [1250] = {.lex_state = 60}, - [1251] = {.lex_state = 60}, - [1252] = {.lex_state = 60}, - [1253] = {.lex_state = 60}, - [1254] = {.lex_state = 60}, - [1255] = {.lex_state = 60}, - [1256] = {.lex_state = 60}, - [1257] = {.lex_state = 60}, - [1258] = {.lex_state = 60}, - [1259] = {.lex_state = 60}, - [1260] = {.lex_state = 60}, - [1261] = {.lex_state = 60}, - [1262] = {.lex_state = 60}, - [1263] = {.lex_state = 60}, - [1264] = {.lex_state = 60}, - [1265] = {.lex_state = 60}, - [1266] = {.lex_state = 60}, - [1267] = {.lex_state = 64}, - [1268] = {.lex_state = 60}, + [1247] = {.lex_state = 66}, + [1248] = {.lex_state = 64}, + [1249] = {.lex_state = 66}, + [1250] = {.lex_state = 66}, + [1251] = {.lex_state = 66}, + [1252] = {.lex_state = 66}, + [1253] = {.lex_state = 66}, + [1254] = {.lex_state = 66}, + [1255] = {.lex_state = 64}, + [1256] = {.lex_state = 66}, + [1257] = {.lex_state = 66}, + [1258] = {.lex_state = 66}, + [1259] = {.lex_state = 66}, + [1260] = {.lex_state = 66}, + [1261] = {.lex_state = 64}, + [1262] = {.lex_state = 64}, + [1263] = {.lex_state = 64}, + [1264] = {.lex_state = 65}, + [1265] = {.lex_state = 64}, + [1266] = {.lex_state = 64}, + [1267] = {.lex_state = 65}, + [1268] = {.lex_state = 64}, [1269] = {.lex_state = 64}, - [1270] = {.lex_state = 60}, - [1271] = {.lex_state = 60}, + [1270] = {.lex_state = 64}, + [1271] = {.lex_state = 65}, [1272] = {.lex_state = 64}, - [1273] = {.lex_state = 64}, - [1274] = {.lex_state = 64}, + [1273] = {.lex_state = 65}, + [1274] = {.lex_state = 60}, [1275] = {.lex_state = 60}, - [1276] = {.lex_state = 64}, - [1277] = {.lex_state = 64}, + [1276] = {.lex_state = 60}, + [1277] = {.lex_state = 60}, [1278] = {.lex_state = 60}, [1279] = {.lex_state = 60}, [1280] = {.lex_state = 60}, - [1281] = {.lex_state = 60}, + [1281] = {.lex_state = 64}, [1282] = {.lex_state = 60}, - [1283] = {.lex_state = 64}, + [1283] = {.lex_state = 60}, [1284] = {.lex_state = 60}, [1285] = {.lex_state = 60}, - [1286] = {.lex_state = 64}, + [1286] = {.lex_state = 60}, [1287] = {.lex_state = 64}, [1288] = {.lex_state = 60}, [1289] = {.lex_state = 60}, [1290] = {.lex_state = 60}, [1291] = {.lex_state = 60}, [1292] = {.lex_state = 60}, - [1293] = {.lex_state = 64}, + [1293] = {.lex_state = 60}, [1294] = {.lex_state = 60}, - [1295] = {.lex_state = 60}, - [1296] = {.lex_state = 64}, - [1297] = {.lex_state = 60}, + [1295] = {.lex_state = 64}, + [1296] = {.lex_state = 60}, + [1297] = {.lex_state = 64}, [1298] = {.lex_state = 64}, [1299] = {.lex_state = 60}, - [1300] = {.lex_state = 64}, + [1300] = {.lex_state = 60}, [1301] = {.lex_state = 60}, - [1302] = {.lex_state = 64}, + [1302] = {.lex_state = 60}, [1303] = {.lex_state = 60}, [1304] = {.lex_state = 60}, [1305] = {.lex_state = 60}, - [1306] = {.lex_state = 60}, + [1306] = {.lex_state = 64}, [1307] = {.lex_state = 60}, [1308] = {.lex_state = 60}, - [1309] = {.lex_state = 60}, + [1309] = {.lex_state = 64}, [1310] = {.lex_state = 60}, [1311] = {.lex_state = 60}, [1312] = {.lex_state = 60}, [1313] = {.lex_state = 60}, [1314] = {.lex_state = 60}, - [1315] = {.lex_state = 64}, - [1316] = {.lex_state = 64}, - [1317] = {.lex_state = 60}, + [1315] = {.lex_state = 60}, + [1316] = {.lex_state = 60}, + [1317] = {.lex_state = 64}, [1318] = {.lex_state = 60}, [1319] = {.lex_state = 60}, [1320] = {.lex_state = 60}, [1321] = {.lex_state = 60}, [1322] = {.lex_state = 60}, [1323] = {.lex_state = 60}, - [1324] = {.lex_state = 64}, - [1325] = {.lex_state = 60}, - [1326] = {.lex_state = 60}, + [1324] = {.lex_state = 60}, + [1325] = {.lex_state = 64}, + [1326] = {.lex_state = 64}, [1327] = {.lex_state = 60}, [1328] = {.lex_state = 60}, - [1329] = {.lex_state = 60}, + [1329] = {.lex_state = 64}, [1330] = {.lex_state = 60}, [1331] = {.lex_state = 60}, - [1332] = {.lex_state = 64}, - [1333] = {.lex_state = 60}, - [1334] = {.lex_state = 60}, + [1332] = {.lex_state = 60}, + [1333] = {.lex_state = 64}, + [1334] = {.lex_state = 64}, [1335] = {.lex_state = 60}, [1336] = {.lex_state = 64}, [1337] = {.lex_state = 60}, - [1338] = {.lex_state = 64}, - [1339] = {.lex_state = 60}, + [1338] = {.lex_state = 60}, + [1339] = {.lex_state = 64}, [1340] = {.lex_state = 64}, - [1341] = {.lex_state = 64}, + [1341] = {.lex_state = 60}, [1342] = {.lex_state = 60}, [1343] = {.lex_state = 64}, - [1344] = {.lex_state = 60}, - [1345] = {.lex_state = 64}, + [1344] = {.lex_state = 64}, + [1345] = {.lex_state = 60}, [1346] = {.lex_state = 64}, - [1347] = {.lex_state = 64}, - [1348] = {.lex_state = 64}, - [1349] = {.lex_state = 64}, - [1350] = {.lex_state = 64}, - [1351] = {.lex_state = 64}, - [1352] = {.lex_state = 64}, - [1353] = {.lex_state = 64}, - [1354] = {.lex_state = 64}, + [1347] = {.lex_state = 60}, + [1348] = {.lex_state = 60}, + [1349] = {.lex_state = 60}, + [1350] = {.lex_state = 60}, + [1351] = {.lex_state = 60}, + [1352] = {.lex_state = 60}, + [1353] = {.lex_state = 60}, + [1354] = {.lex_state = 60}, [1355] = {.lex_state = 64}, - [1356] = {.lex_state = 64}, - [1357] = {.lex_state = 64}, - [1358] = {.lex_state = 64}, - [1359] = {.lex_state = 64}, - [1360] = {.lex_state = 64}, - [1361] = {.lex_state = 65}, + [1356] = {.lex_state = 60}, + [1357] = {.lex_state = 60}, + [1358] = {.lex_state = 60}, + [1359] = {.lex_state = 60}, + [1360] = {.lex_state = 60}, + [1361] = {.lex_state = 60}, [1362] = {.lex_state = 64}, - [1363] = {.lex_state = 64}, + [1363] = {.lex_state = 60}, [1364] = {.lex_state = 64}, - [1365] = {.lex_state = 64}, - [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 65}, - [1368] = {.lex_state = 65}, - [1369] = {.lex_state = 65}, - [1370] = {.lex_state = 33}, - [1371] = {.lex_state = 59}, - [1372] = {.lex_state = 59}, - [1373] = {.lex_state = 59}, - [1374] = {.lex_state = 59}, + [1365] = {.lex_state = 60}, + [1366] = {.lex_state = 60}, + [1367] = {.lex_state = 60}, + [1368] = {.lex_state = 64}, + [1369] = {.lex_state = 64}, + [1370] = {.lex_state = 60}, + [1371] = {.lex_state = 60}, + [1372] = {.lex_state = 60}, + [1373] = {.lex_state = 64}, + [1374] = {.lex_state = 60}, [1375] = {.lex_state = 64}, - [1376] = {.lex_state = 59}, - [1377] = {.lex_state = 59}, - [1378] = {.lex_state = 59}, - [1379] = {.lex_state = 59}, - [1380] = {.lex_state = 59}, - [1381] = {.lex_state = 59}, - [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 59}, - [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 59}, - [1386] = {.lex_state = 59}, - [1387] = {.lex_state = 59}, - [1388] = {.lex_state = 59}, + [1376] = {.lex_state = 60}, + [1377] = {.lex_state = 60}, + [1378] = {.lex_state = 60}, + [1379] = {.lex_state = 60}, + [1380] = {.lex_state = 60}, + [1381] = {.lex_state = 60}, + [1382] = {.lex_state = 60}, + [1383] = {.lex_state = 64}, + [1384] = {.lex_state = 60}, + [1385] = {.lex_state = 64}, + [1386] = {.lex_state = 64}, + [1387] = {.lex_state = 60}, + [1388] = {.lex_state = 60}, [1389] = {.lex_state = 64}, - [1390] = {.lex_state = 59}, - [1391] = {.lex_state = 59}, - [1392] = {.lex_state = 59}, - [1393] = {.lex_state = 59}, + [1390] = {.lex_state = 64}, + [1391] = {.lex_state = 64}, + [1392] = {.lex_state = 64}, + [1393] = {.lex_state = 64}, [1394] = {.lex_state = 64}, - [1395] = {.lex_state = 59}, - [1396] = {.lex_state = 65}, - [1397] = {.lex_state = 65}, - [1398] = {.lex_state = 65}, - [1399] = {.lex_state = 59}, - [1400] = {.lex_state = 59}, + [1395] = {.lex_state = 64}, + [1396] = {.lex_state = 64}, + [1397] = {.lex_state = 64}, + [1398] = {.lex_state = 64}, + [1399] = {.lex_state = 64}, + [1400] = {.lex_state = 64}, [1401] = {.lex_state = 64}, [1402] = {.lex_state = 65}, - [1403] = {.lex_state = 65}, + [1403] = {.lex_state = 64}, [1404] = {.lex_state = 64}, - [1405] = {.lex_state = 59}, - [1406] = {.lex_state = 65}, - [1407] = {.lex_state = 59}, - [1408] = {.lex_state = 65}, - [1409] = {.lex_state = 65}, - [1410] = {.lex_state = 65}, - [1411] = {.lex_state = 59}, - [1412] = {.lex_state = 59}, - [1413] = {.lex_state = 65}, - [1414] = {.lex_state = 65}, - [1415] = {.lex_state = 59}, - [1416] = {.lex_state = 59}, - [1417] = {.lex_state = 59}, + [1405] = {.lex_state = 64}, + [1406] = {.lex_state = 64}, + [1407] = {.lex_state = 64}, + [1408] = {.lex_state = 64}, + [1409] = {.lex_state = 64}, + [1410] = {.lex_state = 64}, + [1411] = {.lex_state = 64}, + [1412] = {.lex_state = 64}, + [1413] = {.lex_state = 64}, + [1414] = {.lex_state = 31}, + [1415] = {.lex_state = 65}, + [1416] = {.lex_state = 64}, + [1417] = {.lex_state = 64}, [1418] = {.lex_state = 59}, [1419] = {.lex_state = 59}, - [1420] = {.lex_state = 59}, - [1421] = {.lex_state = 59}, - [1422] = {.lex_state = 59}, - [1423] = {.lex_state = 59}, + [1420] = {.lex_state = 64}, + [1421] = {.lex_state = 64}, + [1422] = {.lex_state = 64}, + [1423] = {.lex_state = 64}, [1424] = {.lex_state = 65}, - [1425] = {.lex_state = 59}, - [1426] = {.lex_state = 65}, + [1425] = {.lex_state = 64}, + [1426] = {.lex_state = 64}, [1427] = {.lex_state = 65}, - [1428] = {.lex_state = 59}, - [1429] = {.lex_state = 59}, - [1430] = {.lex_state = 65}, - [1431] = {.lex_state = 59}, - [1432] = {.lex_state = 65}, + [1428] = {.lex_state = 64}, + [1429] = {.lex_state = 64}, + [1430] = {.lex_state = 64}, + [1431] = {.lex_state = 64}, + [1432] = {.lex_state = 64}, [1433] = {.lex_state = 59}, [1434] = {.lex_state = 59}, - [1435] = {.lex_state = 33}, - [1436] = {.lex_state = 33}, - [1437] = {.lex_state = 33}, - [1438] = {.lex_state = 65}, - [1439] = {.lex_state = 33}, - [1440] = {.lex_state = 33}, - [1441] = {.lex_state = 33}, - [1442] = {.lex_state = 33}, - [1443] = {.lex_state = 33}, - [1444] = {.lex_state = 33}, - [1445] = {.lex_state = 33}, - [1446] = {.lex_state = 33}, - [1447] = {.lex_state = 33}, - [1448] = {.lex_state = 33}, - [1449] = {.lex_state = 33}, - [1450] = {.lex_state = 33}, - [1451] = {.lex_state = 64}, - [1452] = {.lex_state = 33}, - [1453] = {.lex_state = 33}, - [1454] = {.lex_state = 33}, - [1455] = {.lex_state = 33}, - [1456] = {.lex_state = 33}, - [1457] = {.lex_state = 33}, - [1458] = {.lex_state = 33}, - [1459] = {.lex_state = 33}, - [1460] = {.lex_state = 33}, - [1461] = {.lex_state = 64}, - [1462] = {.lex_state = 64}, - [1463] = {.lex_state = 64}, - [1464] = {.lex_state = 33}, - [1465] = {.lex_state = 33}, - [1466] = {.lex_state = 64}, - [1467] = {.lex_state = 64}, - [1468] = {.lex_state = 33}, - [1469] = {.lex_state = 64}, - [1470] = {.lex_state = 33}, - [1471] = {.lex_state = 33}, - [1472] = {.lex_state = 65}, - [1473] = {.lex_state = 64}, - [1474] = {.lex_state = 33}, - [1475] = {.lex_state = 64}, - [1476] = {.lex_state = 64}, - [1477] = {.lex_state = 33}, - [1478] = {.lex_state = 33}, - [1479] = {.lex_state = 33}, - [1480] = {.lex_state = 33}, - [1481] = {.lex_state = 33}, - [1482] = {.lex_state = 64}, - [1483] = {.lex_state = 64}, - [1484] = {.lex_state = 64}, - [1485] = {.lex_state = 64}, - [1486] = {.lex_state = 64}, - [1487] = {.lex_state = 64}, - [1488] = {.lex_state = 64}, - [1489] = {.lex_state = 64}, - [1490] = {.lex_state = 64}, - [1491] = {.lex_state = 64}, - [1492] = {.lex_state = 64}, - [1493] = {.lex_state = 64}, - [1494] = {.lex_state = 64}, - [1495] = {.lex_state = 64}, - [1496] = {.lex_state = 64}, + [1435] = {.lex_state = 65}, + [1436] = {.lex_state = 59}, + [1437] = {.lex_state = 59}, + [1438] = {.lex_state = 59}, + [1439] = {.lex_state = 59}, + [1440] = {.lex_state = 59}, + [1441] = {.lex_state = 59}, + [1442] = {.lex_state = 59}, + [1443] = {.lex_state = 64}, + [1444] = {.lex_state = 59}, + [1445] = {.lex_state = 64}, + [1446] = {.lex_state = 59}, + [1447] = {.lex_state = 59}, + [1448] = {.lex_state = 59}, + [1449] = {.lex_state = 59}, + [1450] = {.lex_state = 65}, + [1451] = {.lex_state = 59}, + [1452] = {.lex_state = 59}, + [1453] = {.lex_state = 64}, + [1454] = {.lex_state = 59}, + [1455] = {.lex_state = 59}, + [1456] = {.lex_state = 59}, + [1457] = {.lex_state = 64}, + [1458] = {.lex_state = 59}, + [1459] = {.lex_state = 59}, + [1460] = {.lex_state = 65}, + [1461] = {.lex_state = 65}, + [1462] = {.lex_state = 65}, + [1463] = {.lex_state = 65}, + [1464] = {.lex_state = 65}, + [1465] = {.lex_state = 59}, + [1466] = {.lex_state = 65}, + [1467] = {.lex_state = 65}, + [1468] = {.lex_state = 65}, + [1469] = {.lex_state = 65}, + [1470] = {.lex_state = 65}, + [1471] = {.lex_state = 65}, + [1472] = {.lex_state = 64}, + [1473] = {.lex_state = 65}, + [1474] = {.lex_state = 65}, + [1475] = {.lex_state = 65}, + [1476] = {.lex_state = 59}, + [1477] = {.lex_state = 59}, + [1478] = {.lex_state = 59}, + [1479] = {.lex_state = 59}, + [1480] = {.lex_state = 59}, + [1481] = {.lex_state = 59}, + [1482] = {.lex_state = 59}, + [1483] = {.lex_state = 59}, + [1484] = {.lex_state = 59}, + [1485] = {.lex_state = 59}, + [1486] = {.lex_state = 59}, + [1487] = {.lex_state = 59}, + [1488] = {.lex_state = 59}, + [1489] = {.lex_state = 59}, + [1490] = {.lex_state = 59}, + [1491] = {.lex_state = 59}, + [1492] = {.lex_state = 59}, + [1493] = {.lex_state = 59}, + [1494] = {.lex_state = 59}, + [1495] = {.lex_state = 59}, + [1496] = {.lex_state = 31}, [1497] = {.lex_state = 64}, [1498] = {.lex_state = 64}, - [1499] = {.lex_state = 64}, - [1500] = {.lex_state = 64}, - [1501] = {.lex_state = 62}, - [1502] = {.lex_state = 64}, - [1503] = {.lex_state = 64}, + [1499] = {.lex_state = 31}, + [1500] = {.lex_state = 31}, + [1501] = {.lex_state = 31}, + [1502] = {.lex_state = 31}, + [1503] = {.lex_state = 31}, [1504] = {.lex_state = 64}, [1505] = {.lex_state = 64}, - [1506] = {.lex_state = 64}, + [1506] = {.lex_state = 31}, [1507] = {.lex_state = 64}, [1508] = {.lex_state = 64}, - [1509] = {.lex_state = 64}, - [1510] = {.lex_state = 64}, - [1511] = {.lex_state = 64}, + [1509] = {.lex_state = 31}, + [1510] = {.lex_state = 31}, + [1511] = {.lex_state = 31}, [1512] = {.lex_state = 64}, - [1513] = {.lex_state = 64}, + [1513] = {.lex_state = 31}, [1514] = {.lex_state = 64}, [1515] = {.lex_state = 64}, - [1516] = {.lex_state = 64}, + [1516] = {.lex_state = 31}, [1517] = {.lex_state = 64}, [1518] = {.lex_state = 64}, - [1519] = {.lex_state = 64}, - [1520] = {.lex_state = 64}, - [1521] = {.lex_state = 64}, - [1522] = {.lex_state = 64}, + [1519] = {.lex_state = 31}, + [1520] = {.lex_state = 31}, + [1521] = {.lex_state = 31}, + [1522] = {.lex_state = 65}, [1523] = {.lex_state = 64}, - [1524] = {.lex_state = 64}, - [1525] = {.lex_state = 64}, - [1526] = {.lex_state = 64}, - [1527] = {.lex_state = 64}, - [1528] = {.lex_state = 64}, - [1529] = {.lex_state = 69}, - [1530] = {.lex_state = 64}, - [1531] = {.lex_state = 64}, - [1532] = {.lex_state = 64}, - [1533] = {.lex_state = 64}, - [1534] = {.lex_state = 64}, - [1535] = {.lex_state = 69}, - [1536] = {.lex_state = 64}, - [1537] = {.lex_state = 64}, - [1538] = {.lex_state = 64}, - [1539] = {.lex_state = 64}, + [1524] = {.lex_state = 31}, + [1525] = {.lex_state = 31}, + [1526] = {.lex_state = 31}, + [1527] = {.lex_state = 31}, + [1528] = {.lex_state = 31}, + [1529] = {.lex_state = 31}, + [1530] = {.lex_state = 31}, + [1531] = {.lex_state = 31}, + [1532] = {.lex_state = 31}, + [1533] = {.lex_state = 31}, + [1534] = {.lex_state = 31}, + [1535] = {.lex_state = 31}, + [1536] = {.lex_state = 31}, + [1537] = {.lex_state = 31}, + [1538] = {.lex_state = 31}, + [1539] = {.lex_state = 31}, [1540] = {.lex_state = 64}, [1541] = {.lex_state = 64}, - [1542] = {.lex_state = 64}, + [1542] = {.lex_state = 31}, [1543] = {.lex_state = 64}, - [1544] = {.lex_state = 64}, - [1545] = {.lex_state = 64}, - [1546] = {.lex_state = 64}, - [1547] = {.lex_state = 66}, - [1548] = {.lex_state = 66}, + [1544] = {.lex_state = 31}, + [1545] = {.lex_state = 65}, + [1546] = {.lex_state = 31}, + [1547] = {.lex_state = 31}, + [1548] = {.lex_state = 64}, [1549] = {.lex_state = 64}, [1550] = {.lex_state = 64}, - [1551] = {.lex_state = 62}, + [1551] = {.lex_state = 64}, [1552] = {.lex_state = 64}, [1553] = {.lex_state = 64}, [1554] = {.lex_state = 64}, [1555] = {.lex_state = 64}, [1556] = {.lex_state = 64}, [1557] = {.lex_state = 64}, - [1558] = {.lex_state = 62}, + [1558] = {.lex_state = 64}, [1559] = {.lex_state = 64}, - [1560] = {.lex_state = 62}, + [1560] = {.lex_state = 64}, [1561] = {.lex_state = 64}, - [1562] = {.lex_state = 66}, - [1563] = {.lex_state = 69}, + [1562] = {.lex_state = 64}, + [1563] = {.lex_state = 64}, [1564] = {.lex_state = 64}, [1565] = {.lex_state = 64}, - [1566] = {.lex_state = 0}, + [1566] = {.lex_state = 64}, [1567] = {.lex_state = 64}, [1568] = {.lex_state = 64}, [1569] = {.lex_state = 64}, [1570] = {.lex_state = 64}, - [1571] = {.lex_state = 140}, - [1572] = {.lex_state = 140}, - [1573] = {.lex_state = 140}, + [1571] = {.lex_state = 64}, + [1572] = {.lex_state = 64}, + [1573] = {.lex_state = 64}, [1574] = {.lex_state = 64}, [1575] = {.lex_state = 64}, - [1576] = {.lex_state = 140}, + [1576] = {.lex_state = 64}, [1577] = {.lex_state = 64}, [1578] = {.lex_state = 64}, - [1579] = {.lex_state = 64}, - [1580] = {.lex_state = 140}, - [1581] = {.lex_state = 0}, + [1579] = {.lex_state = 62}, + [1580] = {.lex_state = 64}, + [1581] = {.lex_state = 64}, [1582] = {.lex_state = 64}, - [1583] = {.lex_state = 60}, + [1583] = {.lex_state = 64}, [1584] = {.lex_state = 64}, - [1585] = {.lex_state = 68}, - [1586] = {.lex_state = 140}, - [1587] = {.lex_state = 140}, + [1585] = {.lex_state = 64}, + [1586] = {.lex_state = 64}, + [1587] = {.lex_state = 64}, [1588] = {.lex_state = 64}, - [1589] = {.lex_state = 68}, - [1590] = {.lex_state = 68}, - [1591] = {.lex_state = 140}, - [1592] = {.lex_state = 140}, - [1593] = {.lex_state = 140}, - [1594] = {.lex_state = 68}, + [1589] = {.lex_state = 64}, + [1590] = {.lex_state = 69}, + [1591] = {.lex_state = 64}, + [1592] = {.lex_state = 64}, + [1593] = {.lex_state = 64}, + [1594] = {.lex_state = 64}, [1595] = {.lex_state = 64}, - [1596] = {.lex_state = 140}, - [1597] = {.lex_state = 140}, - [1598] = {.lex_state = 140}, - [1599] = {.lex_state = 60}, - [1600] = {.lex_state = 140}, - [1601] = {.lex_state = 140}, - [1602] = {.lex_state = 60}, - [1603] = {.lex_state = 68}, - [1604] = {.lex_state = 60}, - [1605] = {.lex_state = 66}, - [1606] = {.lex_state = 66}, - [1607] = {.lex_state = 66}, - [1608] = {.lex_state = 66}, - [1609] = {.lex_state = 140}, - [1610] = {.lex_state = 62}, + [1596] = {.lex_state = 64}, + [1597] = {.lex_state = 64}, + [1598] = {.lex_state = 64}, + [1599] = {.lex_state = 64}, + [1600] = {.lex_state = 64}, + [1601] = {.lex_state = 64}, + [1602] = {.lex_state = 69}, + [1603] = {.lex_state = 64}, + [1604] = {.lex_state = 64}, + [1605] = {.lex_state = 64}, + [1606] = {.lex_state = 64}, + [1607] = {.lex_state = 64}, + [1608] = {.lex_state = 64}, + [1609] = {.lex_state = 64}, + [1610] = {.lex_state = 64}, [1611] = {.lex_state = 62}, [1612] = {.lex_state = 64}, - [1613] = {.lex_state = 64}, + [1613] = {.lex_state = 66}, [1614] = {.lex_state = 64}, - [1615] = {.lex_state = 140}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 140}, + [1615] = {.lex_state = 64}, + [1616] = {.lex_state = 69}, + [1617] = {.lex_state = 66}, [1618] = {.lex_state = 64}, - [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 66}, - [1621] = {.lex_state = 66}, - [1622] = {.lex_state = 140}, - [1623] = {.lex_state = 66}, - [1624] = {.lex_state = 140}, + [1619] = {.lex_state = 66}, + [1620] = {.lex_state = 64}, + [1621] = {.lex_state = 64}, + [1622] = {.lex_state = 64}, + [1623] = {.lex_state = 60}, + [1624] = {.lex_state = 64}, [1625] = {.lex_state = 62}, [1626] = {.lex_state = 64}, - [1627] = {.lex_state = 64}, - [1628] = {.lex_state = 66}, - [1629] = {.lex_state = 66}, - [1630] = {.lex_state = 66}, - [1631] = {.lex_state = 66}, + [1627] = {.lex_state = 62}, + [1628] = {.lex_state = 64}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 64}, + [1631] = {.lex_state = 64}, [1632] = {.lex_state = 140}, [1633] = {.lex_state = 64}, - [1634] = {.lex_state = 64}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 140}, - [1637] = {.lex_state = 62}, + [1634] = {.lex_state = 140}, + [1635] = {.lex_state = 64}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 64}, [1638] = {.lex_state = 64}, - [1639] = {.lex_state = 64}, + [1639] = {.lex_state = 140}, [1640] = {.lex_state = 140}, - [1641] = {.lex_state = 0}, + [1641] = {.lex_state = 64}, [1642] = {.lex_state = 64}, [1643] = {.lex_state = 64}, - [1644] = {.lex_state = 0}, + [1644] = {.lex_state = 64}, [1645] = {.lex_state = 64}, - [1646] = {.lex_state = 64}, + [1646] = {.lex_state = 140}, [1647] = {.lex_state = 64}, [1648] = {.lex_state = 64}, - [1649] = {.lex_state = 64}, - [1650] = {.lex_state = 64}, + [1649] = {.lex_state = 68}, + [1650] = {.lex_state = 140}, [1651] = {.lex_state = 64}, - [1652] = {.lex_state = 64}, - [1653] = {.lex_state = 64}, + [1652] = {.lex_state = 140}, + [1653] = {.lex_state = 60}, [1654] = {.lex_state = 140}, - [1655] = {.lex_state = 140}, - [1656] = {.lex_state = 64}, - [1657] = {.lex_state = 69}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 66}, - [1660] = {.lex_state = 64}, - [1661] = {.lex_state = 69}, - [1662] = {.lex_state = 64}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 64}, - [1665] = {.lex_state = 140}, - [1666] = {.lex_state = 69}, - [1667] = {.lex_state = 64}, - [1668] = {.lex_state = 64}, - [1669] = {.lex_state = 64}, + [1655] = {.lex_state = 64}, + [1656] = {.lex_state = 140}, + [1657] = {.lex_state = 60}, + [1658] = {.lex_state = 140}, + [1659] = {.lex_state = 60}, + [1660] = {.lex_state = 68}, + [1661] = {.lex_state = 140}, + [1662] = {.lex_state = 68}, + [1663] = {.lex_state = 140}, + [1664] = {.lex_state = 140}, + [1665] = {.lex_state = 68}, + [1666] = {.lex_state = 140}, + [1667] = {.lex_state = 140}, + [1668] = {.lex_state = 60}, + [1669] = {.lex_state = 140}, [1670] = {.lex_state = 64}, - [1671] = {.lex_state = 140}, - [1672] = {.lex_state = 69}, - [1673] = {.lex_state = 69}, - [1674] = {.lex_state = 62}, + [1671] = {.lex_state = 68}, + [1672] = {.lex_state = 60}, + [1673] = {.lex_state = 140}, + [1674] = {.lex_state = 64}, [1675] = {.lex_state = 64}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 69}, - [1678] = {.lex_state = 64}, - [1679] = {.lex_state = 140}, - [1680] = {.lex_state = 66}, + [1676] = {.lex_state = 62}, + [1677] = {.lex_state = 62}, + [1678] = {.lex_state = 140}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 140}, [1681] = {.lex_state = 64}, [1682] = {.lex_state = 66}, - [1683] = {.lex_state = 69}, - [1684] = {.lex_state = 140}, - [1685] = {.lex_state = 69}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 69}, - [1688] = {.lex_state = 69}, - [1689] = {.lex_state = 69}, - [1690] = {.lex_state = 64}, + [1683] = {.lex_state = 66}, + [1684] = {.lex_state = 64}, + [1685] = {.lex_state = 140}, + [1686] = {.lex_state = 64}, + [1687] = {.lex_state = 140}, + [1688] = {.lex_state = 66}, + [1689] = {.lex_state = 140}, + [1690] = {.lex_state = 140}, [1691] = {.lex_state = 140}, - [1692] = {.lex_state = 140}, - [1693] = {.lex_state = 66}, - [1694] = {.lex_state = 64}, - [1695] = {.lex_state = 140}, - [1696] = {.lex_state = 64}, + [1692] = {.lex_state = 62}, + [1693] = {.lex_state = 140}, + [1694] = {.lex_state = 140}, + [1695] = {.lex_state = 66}, + [1696] = {.lex_state = 66}, [1697] = {.lex_state = 140}, - [1698] = {.lex_state = 140}, + [1698] = {.lex_state = 66}, [1699] = {.lex_state = 140}, [1700] = {.lex_state = 140}, - [1701] = {.lex_state = 64}, - [1702] = {.lex_state = 62}, - [1703] = {.lex_state = 140}, + [1701] = {.lex_state = 66}, + [1702] = {.lex_state = 64}, + [1703] = {.lex_state = 66}, [1704] = {.lex_state = 140}, - [1705] = {.lex_state = 140}, - [1706] = {.lex_state = 140}, - [1707] = {.lex_state = 140}, - [1708] = {.lex_state = 55}, + [1705] = {.lex_state = 64}, + [1706] = {.lex_state = 64}, + [1707] = {.lex_state = 66}, + [1708] = {.lex_state = 66}, [1709] = {.lex_state = 140}, - [1710] = {.lex_state = 140}, + [1710] = {.lex_state = 64}, [1711] = {.lex_state = 140}, - [1712] = {.lex_state = 64}, - [1713] = {.lex_state = 64}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 38}, - [1716] = {.lex_state = 64}, + [1712] = {.lex_state = 0}, + [1713] = {.lex_state = 66}, + [1714] = {.lex_state = 140}, + [1715] = {.lex_state = 64}, + [1716] = {.lex_state = 140}, [1717] = {.lex_state = 64}, - [1718] = {.lex_state = 38}, - [1719] = {.lex_state = 40}, - [1720] = {.lex_state = 66}, + [1718] = {.lex_state = 140}, + [1719] = {.lex_state = 64}, + [1720] = {.lex_state = 64}, [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 38}, - [1723] = {.lex_state = 64}, - [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 38}, - [1726] = {.lex_state = 0}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 140}, + [1724] = {.lex_state = 140}, + [1725] = {.lex_state = 64}, + [1726] = {.lex_state = 64}, [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 40}, - [1729] = {.lex_state = 64}, - [1730] = {.lex_state = 64}, + [1728] = {.lex_state = 64}, + [1729] = {.lex_state = 140}, + [1730] = {.lex_state = 140}, [1731] = {.lex_state = 64}, [1732] = {.lex_state = 64}, [1733] = {.lex_state = 64}, - [1734] = {.lex_state = 62}, - [1735] = {.lex_state = 0}, + [1734] = {.lex_state = 0}, + [1735] = {.lex_state = 62}, [1736] = {.lex_state = 64}, - [1737] = {.lex_state = 41}, - [1738] = {.lex_state = 38}, - [1739] = {.lex_state = 55}, - [1740] = {.lex_state = 40}, - [1741] = {.lex_state = 64}, + [1737] = {.lex_state = 64}, + [1738] = {.lex_state = 66}, + [1739] = {.lex_state = 69}, + [1740] = {.lex_state = 64}, + [1741] = {.lex_state = 140}, [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 64}, - [1744] = {.lex_state = 64}, + [1743] = {.lex_state = 140}, + [1744] = {.lex_state = 140}, [1745] = {.lex_state = 64}, - [1746] = {.lex_state = 0}, + [1746] = {.lex_state = 64}, [1747] = {.lex_state = 64}, [1748] = {.lex_state = 64}, - [1749] = {.lex_state = 38}, - [1750] = {.lex_state = 64}, - [1751] = {.lex_state = 64}, + [1749] = {.lex_state = 64}, + [1750] = {.lex_state = 140}, + [1751] = {.lex_state = 140}, [1752] = {.lex_state = 64}, [1753] = {.lex_state = 64}, [1754] = {.lex_state = 64}, - [1755] = {.lex_state = 38}, - [1756] = {.lex_state = 38}, + [1755] = {.lex_state = 140}, + [1756] = {.lex_state = 64}, [1757] = {.lex_state = 64}, [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 64}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 41}, - [1762] = {.lex_state = 41}, - [1763] = {.lex_state = 40}, - [1764] = {.lex_state = 64}, - [1765] = {.lex_state = 62}, - [1766] = {.lex_state = 64}, - [1767] = {.lex_state = 62}, - [1768] = {.lex_state = 64}, - [1769] = {.lex_state = 41}, - [1770] = {.lex_state = 41}, - [1771] = {.lex_state = 64}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, + [1759] = {.lex_state = 66}, + [1760] = {.lex_state = 64}, + [1761] = {.lex_state = 69}, + [1762] = {.lex_state = 69}, + [1763] = {.lex_state = 64}, + [1764] = {.lex_state = 69}, + [1765] = {.lex_state = 69}, + [1766] = {.lex_state = 66}, + [1767] = {.lex_state = 64}, + [1768] = {.lex_state = 69}, + [1769] = {.lex_state = 64}, + [1770] = {.lex_state = 69}, + [1771] = {.lex_state = 140}, + [1772] = {.lex_state = 64}, + [1773] = {.lex_state = 140}, [1774] = {.lex_state = 64}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 64}, - [1777] = {.lex_state = 41}, - [1778] = {.lex_state = 64}, - [1779] = {.lex_state = 41}, - [1780] = {.lex_state = 41}, - [1781] = {.lex_state = 40}, - [1782] = {.lex_state = 38}, + [1775] = {.lex_state = 64}, + [1776] = {.lex_state = 69}, + [1777] = {.lex_state = 62}, + [1778] = {.lex_state = 69}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 69}, + [1781] = {.lex_state = 69}, + [1782] = {.lex_state = 64}, [1783] = {.lex_state = 140}, - [1784] = {.lex_state = 62}, - [1785] = {.lex_state = 41}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 43}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 55}, - [1800] = {.lex_state = 64}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, + [1784] = {.lex_state = 55}, + [1785] = {.lex_state = 140}, + [1786] = {.lex_state = 140}, + [1787] = {.lex_state = 64}, + [1788] = {.lex_state = 140}, + [1789] = {.lex_state = 140}, + [1790] = {.lex_state = 64}, + [1791] = {.lex_state = 140}, + [1792] = {.lex_state = 140}, + [1793] = {.lex_state = 64}, + [1794] = {.lex_state = 140}, + [1795] = {.lex_state = 62}, + [1796] = {.lex_state = 140}, + [1797] = {.lex_state = 140}, + [1798] = {.lex_state = 140}, + [1799] = {.lex_state = 140}, + [1800] = {.lex_state = 140}, + [1801] = {.lex_state = 140}, + [1802] = {.lex_state = 66}, [1803] = {.lex_state = 64}, - [1804] = {.lex_state = 40}, - [1805] = {.lex_state = 55}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 40}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, + [1804] = {.lex_state = 38}, + [1805] = {.lex_state = 64}, + [1806] = {.lex_state = 55}, + [1807] = {.lex_state = 40}, + [1808] = {.lex_state = 40}, + [1809] = {.lex_state = 38}, + [1810] = {.lex_state = 64}, + [1811] = {.lex_state = 64}, + [1812] = {.lex_state = 64}, + [1813] = {.lex_state = 64}, + [1814] = {.lex_state = 64}, [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 40}, - [1819] = {.lex_state = 0}, + [1816] = {.lex_state = 64}, + [1817] = {.lex_state = 64}, + [1818] = {.lex_state = 64}, + [1819] = {.lex_state = 38}, [1820] = {.lex_state = 64}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 43}, - [1826] = {.lex_state = 0}, + [1821] = {.lex_state = 45}, + [1822] = {.lex_state = 62}, + [1823] = {.lex_state = 62}, + [1824] = {.lex_state = 64}, + [1825] = {.lex_state = 64}, + [1826] = {.lex_state = 40}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 64}, - [1831] = {.lex_state = 55}, - [1832] = {.lex_state = 55}, - [1833] = {.lex_state = 0}, + [1828] = {.lex_state = 40}, + [1829] = {.lex_state = 66}, + [1830] = {.lex_state = 62}, + [1831] = {.lex_state = 64}, + [1832] = {.lex_state = 140}, + [1833] = {.lex_state = 64}, [1834] = {.lex_state = 64}, - [1835] = {.lex_state = 64}, - [1836] = {.lex_state = 64}, + [1835] = {.lex_state = 38}, + [1836] = {.lex_state = 0}, [1837] = {.lex_state = 64}, [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 55}, - [1840] = {.lex_state = 0}, + [1839] = {.lex_state = 64}, + [1840] = {.lex_state = 40}, [1841] = {.lex_state = 0}, [1842] = {.lex_state = 64}, [1843] = {.lex_state = 64}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 43}, - [1846] = {.lex_state = 40}, - [1847] = {.lex_state = 0}, + [1844] = {.lex_state = 64}, + [1845] = {.lex_state = 64}, + [1846] = {.lex_state = 38}, + [1847] = {.lex_state = 40}, [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 55}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, + [1849] = {.lex_state = 64}, + [1850] = {.lex_state = 62}, + [1851] = {.lex_state = 64}, + [1852] = {.lex_state = 140}, + [1853] = {.lex_state = 64}, + [1854] = {.lex_state = 64}, + [1855] = {.lex_state = 64}, + [1856] = {.lex_state = 64}, + [1857] = {.lex_state = 45}, + [1858] = {.lex_state = 64}, + [1859] = {.lex_state = 45}, + [1860] = {.lex_state = 38}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 0}, + [1862] = {.lex_state = 38}, + [1863] = {.lex_state = 64}, [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 55}, + [1865] = {.lex_state = 45}, + [1866] = {.lex_state = 40}, + [1867] = {.lex_state = 64}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1869] = {.lex_state = 40}, + [1870] = {.lex_state = 64}, + [1871] = {.lex_state = 45}, + [1872] = {.lex_state = 38}, + [1873] = {.lex_state = 40}, + [1874] = {.lex_state = 64}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 43}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, + [1876] = {.lex_state = 64}, + [1877] = {.lex_state = 38}, + [1878] = {.lex_state = 64}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, + [1880] = {.lex_state = 64}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 43}, - [1884] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 55}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 64}, - [1887] = {.lex_state = 64}, - [1888] = {.lex_state = 64}, + [1886] = {.lex_state = 0}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, [1890] = {.lex_state = 0}, [1891] = {.lex_state = 0}, @@ -15192,7 +15343,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1893] = {.lex_state = 0}, [1894] = {.lex_state = 0}, [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, + [1896] = {.lex_state = 42}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 0}, @@ -15200,402 +15351,525 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 0}, + [1904] = {.lex_state = 64}, [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 42}, - [1912] = {.lex_state = 42}, - [1913] = {.lex_state = 42}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 0}, + [1913] = {.lex_state = 64}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, + [1915] = {.lex_state = 64}, [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 64}, + [1917] = {.lex_state = 64}, + [1918] = {.lex_state = 0}, [1919] = {.lex_state = 0}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 140}, + [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 140}, - [1924] = {.lex_state = 140}, - [1925] = {.lex_state = 140}, - [1926] = {.lex_state = 42}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 55}, + [1925] = {.lex_state = 55}, + [1926] = {.lex_state = 0}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 140}, - [1929] = {.lex_state = 140}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 42}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 140}, - [1932] = {.lex_state = 140}, - [1933] = {.lex_state = 140}, - [1934] = {.lex_state = 42}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 64}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 55}, + [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 140}, - [1940] = {.lex_state = 140}, - [1941] = {.lex_state = 140}, - [1942] = {.lex_state = 140}, - [1943] = {.lex_state = 140}, + [1939] = {.lex_state = 64}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 0}, + [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 42}, - [1946] = {.lex_state = 64}, + [1945] = {.lex_state = 0}, + [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 140}, - [1950] = {.lex_state = 140}, - [1951] = {.lex_state = 64}, - [1952] = {.lex_state = 140}, - [1953] = {.lex_state = 64}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 0}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0}, + [1955] = {.lex_state = 45}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 64}, - [1958] = {.lex_state = 42}, + [1957] = {.lex_state = 55}, + [1958] = {.lex_state = 0}, [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 140}, + [1961] = {.lex_state = 0}, [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 140}, - [1964] = {.lex_state = 140}, + [1963] = {.lex_state = 55}, + [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 140}, - [1967] = {.lex_state = 140}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 55}, + [1968] = {.lex_state = 64}, + [1969] = {.lex_state = 42}, [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 140}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 42}, + [1971] = {.lex_state = 64}, + [1972] = {.lex_state = 42}, + [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 42}, + [1975] = {.lex_state = 0}, [1976] = {.lex_state = 0}, [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 140}, + [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 140}, - [1982] = {.lex_state = 64}, - [1983] = {.lex_state = 140}, - [1984] = {.lex_state = 64}, - [1985] = {.lex_state = 140}, - [1986] = {.lex_state = 140}, - [1987] = {.lex_state = 64}, - [1988] = {.lex_state = 55}, - [1989] = {.lex_state = 42}, - [1990] = {.lex_state = 140}, + [1980] = {.lex_state = 64}, + [1981] = {.lex_state = 55}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 0}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 0}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 0}, + [1990] = {.lex_state = 0}, [1991] = {.lex_state = 42}, - [1992] = {.lex_state = 42}, - [1993] = {.lex_state = 42}, - [1994] = {.lex_state = 42}, - [1995] = {.lex_state = 42}, - [1996] = {.lex_state = 55}, - [1997] = {.lex_state = 42}, - [1998] = {.lex_state = 42}, + [1992] = {.lex_state = 0}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 45}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 0}, + [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 140}, + [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 42}, - [2004] = {.lex_state = 42}, - [2005] = {.lex_state = 42}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 0}, [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 42}, + [2007] = {.lex_state = 0}, [2008] = {.lex_state = 0}, [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 64}, - [2011] = {.lex_state = 140}, - [2012] = {.lex_state = 53}, - [2013] = {.lex_state = 43}, - [2014] = {.lex_state = 43}, - [2015] = {.lex_state = 53}, - [2016] = {.lex_state = 140}, - [2017] = {.lex_state = 53}, + [2010] = {.lex_state = 0}, + [2011] = {.lex_state = 0}, + [2012] = {.lex_state = 0}, + [2013] = {.lex_state = 0}, + [2014] = {.lex_state = 0}, + [2015] = {.lex_state = 64}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 45}, [2018] = {.lex_state = 64}, - [2019] = {.lex_state = 43}, - [2020] = {.lex_state = 0}, + [2019] = {.lex_state = 64}, + [2020] = {.lex_state = 45}, [2021] = {.lex_state = 0}, [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 53}, - [2024] = {.lex_state = 53}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, + [2023] = {.lex_state = 55}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 64}, + [2026] = {.lex_state = 41}, [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 53}, + [2028] = {.lex_state = 55}, + [2029] = {.lex_state = 41}, + [2030] = {.lex_state = 140}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 43}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 43}, - [2037] = {.lex_state = 0}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 41}, + [2034] = {.lex_state = 64}, + [2035] = {.lex_state = 41}, + [2036] = {.lex_state = 140}, + [2037] = {.lex_state = 140}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 53}, - [2041] = {.lex_state = 43}, - [2042] = {.lex_state = 53}, - [2043] = {.lex_state = 53}, - [2044] = {.lex_state = 53}, - [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 43}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 53}, - [2050] = {.lex_state = 43}, - [2051] = {.lex_state = 64}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 53}, - [2054] = {.lex_state = 64}, - [2055] = {.lex_state = 53}, - [2056] = {.lex_state = 43}, + [2039] = {.lex_state = 140}, + [2040] = {.lex_state = 0}, + [2041] = {.lex_state = 64}, + [2042] = {.lex_state = 140}, + [2043] = {.lex_state = 0}, + [2044] = {.lex_state = 140}, + [2045] = {.lex_state = 140}, + [2046] = {.lex_state = 140}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 140}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 41}, + [2052] = {.lex_state = 140}, + [2053] = {.lex_state = 140}, + [2054] = {.lex_state = 140}, + [2055] = {.lex_state = 41}, + [2056] = {.lex_state = 140}, [2057] = {.lex_state = 64}, [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 43}, - [2061] = {.lex_state = 43}, - [2062] = {.lex_state = 53}, - [2063] = {.lex_state = 43}, + [2060] = {.lex_state = 41}, + [2061] = {.lex_state = 140}, + [2062] = {.lex_state = 140}, + [2063] = {.lex_state = 140}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 43}, - [2067] = {.lex_state = 43}, - [2068] = {.lex_state = 43}, - [2069] = {.lex_state = 43}, - [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 64}, - [2072] = {.lex_state = 64}, - [2073] = {.lex_state = 43}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 53}, + [2066] = {.lex_state = 140}, + [2067] = {.lex_state = 140}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 140}, + [2071] = {.lex_state = 140}, + [2072] = {.lex_state = 140}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 64}, + [2075] = {.lex_state = 41}, + [2076] = {.lex_state = 140}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 64}, - [2081] = {.lex_state = 53}, - [2082] = {.lex_state = 64}, - [2083] = {.lex_state = 53}, - [2084] = {.lex_state = 43}, - [2085] = {.lex_state = 0}, + [2079] = {.lex_state = 64}, + [2080] = {.lex_state = 140}, + [2081] = {.lex_state = 140}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 140}, + [2084] = {.lex_state = 0}, + [2085] = {.lex_state = 41}, [2086] = {.lex_state = 0}, [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, + [2091] = {.lex_state = 64}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, + [2093] = {.lex_state = 41}, + [2094] = {.lex_state = 55}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 43}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 53}, - [2100] = {.lex_state = 53}, - [2101] = {.lex_state = 53}, - [2102] = {.lex_state = 53}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 43}, - [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 0}, + [2097] = {.lex_state = 140}, + [2098] = {.lex_state = 41}, + [2099] = {.lex_state = 140}, + [2100] = {.lex_state = 140}, + [2101] = {.lex_state = 64}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 41}, + [2104] = {.lex_state = 41}, + [2105] = {.lex_state = 41}, + [2106] = {.lex_state = 140}, [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, + [2108] = {.lex_state = 41}, + [2109] = {.lex_state = 140}, + [2110] = {.lex_state = 41}, [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 43}, - [2114] = {.lex_state = 64}, - [2115] = {.lex_state = 64}, - [2116] = {.lex_state = 53}, - [2117] = {.lex_state = 53}, + [2112] = {.lex_state = 41}, + [2113] = {.lex_state = 41}, + [2114] = {.lex_state = 0}, + [2115] = {.lex_state = 41}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 41}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 64}, - [2121] = {.lex_state = 53}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 43}, - [2125] = {.lex_state = 53}, - [2126] = {.lex_state = 53}, + [2123] = {.lex_state = 41}, + [2124] = {.lex_state = 53}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, [2127] = {.lex_state = 53}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 64}, - [2132] = {.lex_state = 53}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, + [2128] = {.lex_state = 64}, + [2129] = {.lex_state = 53}, + [2130] = {.lex_state = 53}, + [2131] = {.lex_state = 42}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 42}, + [2134] = {.lex_state = 53}, [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 64}, - [2138] = {.lex_state = 0}, + [2136] = {.lex_state = 140}, + [2137] = {.lex_state = 42}, + [2138] = {.lex_state = 42}, [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 43}, + [2140] = {.lex_state = 53}, + [2141] = {.lex_state = 42}, + [2142] = {.lex_state = 0}, [2143] = {.lex_state = 0}, [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 64}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 53}, - [2149] = {.lex_state = 53}, - [2150] = {.lex_state = 53}, - [2151] = {.lex_state = 64}, - [2152] = {.lex_state = 53}, - [2153] = {.lex_state = 43}, - [2154] = {.lex_state = 43}, - [2155] = {.lex_state = 64}, - [2156] = {.lex_state = 43}, - [2157] = {.lex_state = 43}, - [2158] = {.lex_state = 64}, - [2159] = {.lex_state = 53}, + [2145] = {.lex_state = 53}, + [2146] = {.lex_state = 42}, + [2147] = {.lex_state = 42}, + [2148] = {.lex_state = 0}, + [2149] = {.lex_state = 0}, + [2150] = {.lex_state = 0}, + [2151] = {.lex_state = 42}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 42}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 42}, + [2159] = {.lex_state = 0}, [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 53}, - [2163] = {.lex_state = 64}, + [2161] = {.lex_state = 42}, + [2162] = {.lex_state = 0}, + [2163] = {.lex_state = 0}, [2164] = {.lex_state = 0}, [2165] = {.lex_state = 0}, [2166] = {.lex_state = 64}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 53}, - [2169] = {.lex_state = 43}, - [2170] = {.lex_state = 64}, - [2171] = {.lex_state = 64}, - [2172] = {.lex_state = 53}, - [2173] = {.lex_state = 53}, - [2174] = {.lex_state = 64}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 53}, - [2178] = {.lex_state = 43}, - [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 43}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 64}, - [2183] = {.lex_state = 64}, - [2184] = {.lex_state = 43}, - [2185] = {.lex_state = 64}, - [2186] = {.lex_state = 43}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 53}, + [2167] = {.lex_state = 53}, + [2168] = {.lex_state = 42}, + [2169] = {.lex_state = 42}, + [2170] = {.lex_state = 53}, + [2171] = {.lex_state = 42}, + [2172] = {.lex_state = 64}, + [2173] = {.lex_state = 140}, + [2174] = {.lex_state = 42}, + [2175] = {.lex_state = 42}, + [2176] = {.lex_state = 53}, + [2177] = {.lex_state = 42}, + [2178] = {.lex_state = 64}, + [2179] = {.lex_state = 64}, + [2180] = {.lex_state = 64}, + [2181] = {.lex_state = 64}, + [2182] = {.lex_state = 42}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 53}, + [2185] = {.lex_state = 0}, + [2186] = {.lex_state = 53}, + [2187] = {.lex_state = 53}, + [2188] = {.lex_state = 64}, [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 64}, - [2191] = {.lex_state = 43}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 140}, - [2195] = {.lex_state = 53}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 53}, + [2192] = {.lex_state = 42}, + [2193] = {.lex_state = 64}, + [2194] = {.lex_state = 42}, + [2195] = {.lex_state = 0}, [2196] = {.lex_state = 53}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 43}, - [2199] = {.lex_state = 64}, - [2200] = {.lex_state = 64}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 64}, + [2197] = {.lex_state = 53}, + [2198] = {.lex_state = 53}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 0}, + [2201] = {.lex_state = 53}, + [2202] = {.lex_state = 42}, + [2203] = {.lex_state = 0}, [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 53}, + [2205] = {.lex_state = 0}, [2206] = {.lex_state = 0}, [2207] = {.lex_state = 53}, - [2208] = {.lex_state = 64}, + [2208] = {.lex_state = 0}, [2209] = {.lex_state = 64}, [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, + [2211] = {.lex_state = 64}, [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 64}, - [2215] = {.lex_state = 64}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, + [2214] = {.lex_state = 42}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 53}, + [2217] = {.lex_state = 64}, [2218] = {.lex_state = 53}, - [2219] = {.lex_state = 140}, - [2220] = {.lex_state = 64}, - [2221] = {.lex_state = 53}, - [2222] = {.lex_state = 53}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 53}, - [2225] = {.lex_state = 43}, - [2226] = {.lex_state = 64}, - [2227] = {.lex_state = 140}, - [2228] = {.lex_state = 140}, + [2219] = {.lex_state = 64}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 64}, + [2224] = {.lex_state = 64}, + [2225] = {.lex_state = 53}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 64}, + [2228] = {.lex_state = 64}, [2229] = {.lex_state = 64}, [2230] = {.lex_state = 64}, - [2231] = {.lex_state = 64}, - [2232] = {.lex_state = 64}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, [2233] = {.lex_state = 53}, - [2234] = {.lex_state = 64}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 140}, - [2239] = {.lex_state = 140}, + [2234] = {.lex_state = 53}, + [2235] = {.lex_state = 42}, + [2236] = {.lex_state = 53}, + [2237] = {.lex_state = 53}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 140}, - [2242] = {.lex_state = 53}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 64}, + [2243] = {.lex_state = 53}, + [2244] = {.lex_state = 53}, [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 53}, - [2247] = {.lex_state = 0}, + [2246] = {.lex_state = 0}, + [2247] = {.lex_state = 53}, [2248] = {.lex_state = 53}, - [2249] = {.lex_state = 64}, + [2249] = {.lex_state = 42}, [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, + [2251] = {.lex_state = 53}, [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 64}, + [2253] = {.lex_state = 42}, [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 140}, - [2256] = {.lex_state = 0}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 53}, [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, + [2258] = {.lex_state = 53}, [2259] = {.lex_state = 0}, [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 140}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 53}, - [2264] = {.lex_state = 64}, - [2265] = {.lex_state = 64}, + [2261] = {.lex_state = 53}, + [2262] = {.lex_state = 53}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 0}, [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 53}, + [2267] = {.lex_state = 64}, + [2268] = {.lex_state = 64}, [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 64}, - [2271] = {.lex_state = 64}, - [2272] = {.lex_state = 64}, - [2273] = {.lex_state = 140}, + [2270] = {.lex_state = 0}, + [2271] = {.lex_state = 0}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, [2274] = {.lex_state = 0}, [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 43}, + [2276] = {.lex_state = 64}, + [2277] = {.lex_state = 0}, [2278] = {.lex_state = 140}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 64}, + [2279] = {.lex_state = 42}, + [2280] = {.lex_state = 0}, [2281] = {.lex_state = 53}, [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 53}, - [2284] = {.lex_state = 53}, - [2285] = {.lex_state = 140}, - [2286] = {.lex_state = 53}, + [2283] = {.lex_state = 140}, + [2284] = {.lex_state = 140}, + [2285] = {.lex_state = 53}, + [2286] = {.lex_state = 0}, [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 43}, - [2290] = {.lex_state = 140}, + [2288] = {.lex_state = 64}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 0}, [2291] = {.lex_state = 0}, [2292] = {.lex_state = 64}, - [2293] = {.lex_state = 140}, - [2294] = {.lex_state = 53}, - [2295] = {.lex_state = 43}, - [2296] = {.lex_state = 140}, - [2297] = {.lex_state = 53}, + [2293] = {.lex_state = 53}, + [2294] = {.lex_state = 0}, + [2295] = {.lex_state = 42}, + [2296] = {.lex_state = 53}, + [2297] = {.lex_state = 42}, [2298] = {.lex_state = 64}, - [2299] = {.lex_state = 140}, + [2299] = {.lex_state = 64}, + [2300] = {.lex_state = 0}, + [2301] = {.lex_state = 0}, + [2302] = {.lex_state = 42}, + [2303] = {.lex_state = 0}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 42}, + [2306] = {.lex_state = 64}, + [2307] = {.lex_state = 64}, + [2308] = {.lex_state = 0}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 42}, + [2312] = {.lex_state = 0}, + [2313] = {.lex_state = 140}, + [2314] = {.lex_state = 0}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 53}, + [2317] = {.lex_state = 64}, + [2318] = {.lex_state = 0}, + [2319] = {.lex_state = 0}, + [2320] = {.lex_state = 0}, + [2321] = {.lex_state = 42}, + [2322] = {.lex_state = 64}, + [2323] = {.lex_state = 64}, + [2324] = {.lex_state = 42}, + [2325] = {.lex_state = 64}, + [2326] = {.lex_state = 64}, + [2327] = {.lex_state = 64}, + [2328] = {.lex_state = 64}, + [2329] = {.lex_state = 0}, + [2330] = {.lex_state = 0}, + [2331] = {.lex_state = 53}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 64}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 140}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 53}, + [2339] = {.lex_state = 0}, + [2340] = {.lex_state = 64}, + [2341] = {.lex_state = 53}, + [2342] = {.lex_state = 0}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 53}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0}, + [2348] = {.lex_state = 64}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 0}, + [2351] = {.lex_state = 53}, + [2352] = {.lex_state = 64}, + [2353] = {.lex_state = 64}, + [2354] = {.lex_state = 64}, + [2355] = {.lex_state = 42}, + [2356] = {.lex_state = 53}, + [2357] = {.lex_state = 42}, + [2358] = {.lex_state = 0}, + [2359] = {.lex_state = 53}, + [2360] = {.lex_state = 140}, + [2361] = {.lex_state = 53}, + [2362] = {.lex_state = 53}, + [2363] = {.lex_state = 140}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 0}, + [2366] = {.lex_state = 0}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 64}, + [2369] = {.lex_state = 0}, + [2370] = {.lex_state = 64}, + [2371] = {.lex_state = 64}, + [2372] = {.lex_state = 0}, + [2373] = {.lex_state = 140}, + [2374] = {.lex_state = 42}, + [2375] = {.lex_state = 53}, + [2376] = {.lex_state = 64}, + [2377] = {.lex_state = 53}, + [2378] = {.lex_state = 0}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 0}, + [2381] = {.lex_state = 0}, + [2382] = {.lex_state = 0}, + [2383] = {.lex_state = 0}, + [2384] = {.lex_state = 140}, + [2385] = {.lex_state = 0}, + [2386] = {.lex_state = 140}, + [2387] = {.lex_state = 64}, + [2388] = {.lex_state = 140}, + [2389] = {.lex_state = 0}, + [2390] = {.lex_state = 0}, + [2391] = {.lex_state = 0}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 53}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 64}, + [2396] = {.lex_state = 53}, + [2397] = {.lex_state = 42}, + [2398] = {.lex_state = 0}, + [2399] = {.lex_state = 0}, + [2400] = {.lex_state = 53}, + [2401] = {.lex_state = 53}, + [2402] = {.lex_state = 0}, + [2403] = {.lex_state = 64}, + [2404] = {.lex_state = 42}, + [2405] = {.lex_state = 53}, + [2406] = {.lex_state = 53}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 140}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 53}, + [2412] = {.lex_state = 0}, + [2413] = {.lex_state = 140}, + [2414] = {.lex_state = 53}, + [2415] = {.lex_state = 64}, + [2416] = {.lex_state = 140}, + [2417] = {.lex_state = 0}, + [2418] = {.lex_state = 53}, + [2419] = {.lex_state = 140}, + [2420] = {.lex_state = 0}, + [2421] = {.lex_state = 64}, + [2422] = {.lex_state = 140}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15748,75 +16022,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2192), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(485), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1506), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(884), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1156), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1344), - [sym__expression_not_binary] = STATE(1342), - [sym__string] = STATE(1342), - [sym_conditional_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1342), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(1342), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(1342), - [sym_cast_expression] = STATE(1342), - [sym_sizeof_expression] = STATE(1342), - [sym_alignof_expression] = STATE(1342), - [sym_offsetof_expression] = STATE(1342), - [sym_generic_expression] = STATE(1342), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(1342), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(1342), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(1342), - [sym_concatenated_string] = STATE(1342), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(1342), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_translation_unit] = STATE(2259), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym__old_style_function_definition] = STATE(511), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1410), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(912), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1091), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym__top_level_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(1387), + [sym__expression_not_binary] = STATE(1388), + [sym__string] = STATE(1388), + [sym_conditional_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1388), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(1388), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(1388), + [sym_cast_expression] = STATE(1388), + [sym_sizeof_expression] = STATE(1388), + [sym_alignof_expression] = STATE(1388), + [sym_offsetof_expression] = STATE(1388), + [sym_generic_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(1388), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(1388), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(1388), + [sym_concatenated_string] = STATE(1388), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(1388), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15911,80 +16185,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2017), - [sym_preproc_elif] = STATE(2017), - [sym_preproc_elifdef] = STATE(2017), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(9), + [sym_preproc_def] = STATE(9), + [sym_preproc_function_def] = STATE(9), + [sym_preproc_call] = STATE(9), + [sym_preproc_if] = STATE(9), + [sym_preproc_ifdef] = STATE(9), + [sym_preproc_else] = STATE(2145), + [sym_preproc_elif] = STATE(2145), + [sym_preproc_elifdef] = STATE(2145), + [sym_function_definition] = STATE(9), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_case_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_goto_statement] = STATE(9), + [sym_seh_try_statement] = STATE(9), + [sym_seh_leave_statement] = STATE(9), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16086,80 +16360,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2030), - [sym_preproc_elif] = STATE(2030), - [sym_preproc_elifdef] = STATE(2030), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_call] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(2140), + [sym_preproc_elif] = STATE(2140), + [sym_preproc_elifdef] = STATE(2140), + [sym_function_definition] = STATE(7), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_case_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_goto_statement] = STATE(7), + [sym_seh_try_statement] = STATE(7), + [sym_seh_leave_statement] = STATE(7), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16261,80 +16535,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_call] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(2294), - [sym_preproc_elif] = STATE(2294), - [sym_preproc_elifdef] = STATE(2294), - [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(8), - [sym_labeled_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_if_statement] = STATE(8), - [sym_switch_statement] = STATE(8), - [sym_case_statement] = STATE(8), - [sym_while_statement] = STATE(8), - [sym_do_statement] = STATE(8), - [sym_for_statement] = STATE(8), - [sym_return_statement] = STATE(8), - [sym_break_statement] = STATE(8), - [sym_continue_statement] = STATE(8), - [sym_goto_statement] = STATE(8), - [sym_seh_try_statement] = STATE(8), - [sym_seh_leave_statement] = STATE(8), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2170), + [sym_preproc_elif] = STATE(2170), + [sym_preproc_elifdef] = STATE(2170), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16436,80 +16710,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2149), - [sym_preproc_elif] = STATE(2149), - [sym_preproc_elifdef] = STATE(2149), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2281), + [sym_preproc_elif] = STATE(2281), + [sym_preproc_elifdef] = STATE(2281), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16611,80 +16885,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(3), - [sym_preproc_def] = STATE(3), - [sym_preproc_function_def] = STATE(3), - [sym_preproc_call] = STATE(3), - [sym_preproc_if] = STATE(3), - [sym_preproc_ifdef] = STATE(3), - [sym_preproc_else] = STATE(2121), - [sym_preproc_elif] = STATE(2121), - [sym_preproc_elifdef] = STATE(2121), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(3), - [sym_labeled_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_if_statement] = STATE(3), - [sym_switch_statement] = STATE(3), - [sym_case_statement] = STATE(3), - [sym_while_statement] = STATE(3), - [sym_do_statement] = STATE(3), - [sym_for_statement] = STATE(3), - [sym_return_statement] = STATE(3), - [sym_break_statement] = STATE(3), - [sym_continue_statement] = STATE(3), - [sym_goto_statement] = STATE(3), - [sym_seh_try_statement] = STATE(3), - [sym_seh_leave_statement] = STATE(3), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2418), + [sym_preproc_elif] = STATE(2418), + [sym_preproc_elifdef] = STATE(2418), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16786,80 +17060,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(2012), - [sym_preproc_elif] = STATE(2012), - [sym_preproc_elifdef] = STATE(2012), - [sym_function_definition] = STATE(10), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym_seh_try_statement] = STATE(10), - [sym_seh_leave_statement] = STATE(10), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2414), + [sym_preproc_elif] = STATE(2414), + [sym_preproc_elifdef] = STATE(2414), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16961,80 +17235,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2218), - [sym_preproc_elif] = STATE(2218), - [sym_preproc_elifdef] = STATE(2218), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(4), + [sym_preproc_def] = STATE(4), + [sym_preproc_function_def] = STATE(4), + [sym_preproc_call] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(2207), + [sym_preproc_elif] = STATE(2207), + [sym_preproc_elifdef] = STATE(2207), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(4), + [sym_labeled_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_switch_statement] = STATE(4), + [sym_case_statement] = STATE(4), + [sym_while_statement] = STATE(4), + [sym_do_statement] = STATE(4), + [sym_for_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_break_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_goto_statement] = STATE(4), + [sym_seh_try_statement] = STATE(4), + [sym_seh_leave_statement] = STATE(4), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17136,80 +17410,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_call] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(2286), - [sym_preproc_elif] = STATE(2286), - [sym_preproc_elifdef] = STATE(2286), - [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(5), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(5), - [sym_labeled_statement] = STATE(5), - [sym_expression_statement] = STATE(5), - [sym_if_statement] = STATE(5), - [sym_switch_statement] = STATE(5), - [sym_case_statement] = STATE(5), - [sym_while_statement] = STATE(5), - [sym_do_statement] = STATE(5), - [sym_for_statement] = STATE(5), - [sym_return_statement] = STATE(5), - [sym_break_statement] = STATE(5), - [sym_continue_statement] = STATE(5), - [sym_goto_statement] = STATE(5), - [sym_seh_try_statement] = STATE(5), - [sym_seh_leave_statement] = STATE(5), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2127), + [sym_preproc_elif] = STATE(2127), + [sym_preproc_elifdef] = STATE(2127), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17311,80 +17585,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(2126), - [sym_preproc_elif] = STATE(2126), - [sym_preproc_elifdef] = STATE(2126), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(6), + [sym_preproc_def] = STATE(6), + [sym_preproc_function_def] = STATE(6), + [sym_preproc_call] = STATE(6), + [sym_preproc_if] = STATE(6), + [sym_preproc_ifdef] = STATE(6), + [sym_preproc_else] = STATE(2377), + [sym_preproc_elif] = STATE(2377), + [sym_preproc_elifdef] = STATE(2377), + [sym_function_definition] = STATE(6), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(6), + [sym_type_definition] = STATE(6), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(6), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(6), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_case_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_goto_statement] = STATE(6), + [sym_seh_try_statement] = STATE(6), + [sym_seh_leave_statement] = STATE(6), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(6), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(6), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17486,80 +17760,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(2062), - [sym_preproc_elif] = STATE(2062), - [sym_preproc_elifdef] = STATE(2062), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_call] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(2316), + [sym_preproc_elif] = STATE(2316), + [sym_preproc_elifdef] = STATE(2316), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym_seh_try_statement] = STATE(5), + [sym_seh_leave_statement] = STATE(5), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17661,79 +17935,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(25), - [sym_preproc_def] = STATE(25), - [sym_preproc_function_def] = STATE(25), - [sym_preproc_call] = STATE(25), - [sym_preproc_if] = STATE(25), - [sym_preproc_ifdef] = STATE(25), - [sym_preproc_else] = STATE(2177), - [sym_preproc_elif] = STATE(2177), - [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_case_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_goto_statement] = STATE(25), - [sym_seh_try_statement] = STATE(25), - [sym_seh_leave_statement] = STATE(25), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(2411), + [sym_preproc_elif] = STATE(2411), + [sym_function_definition] = STATE(19), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym_seh_try_statement] = STATE(19), + [sym_seh_leave_statement] = STATE(19), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -17833,79 +18107,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2168), - [sym_preproc_elif] = STATE(2168), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_preproc_else] = STATE(2129), + [sym_preproc_elif] = STATE(2129), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(23), + [sym_labeled_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_switch_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_do_statement] = STATE(23), + [sym_for_statement] = STATE(23), + [sym_return_statement] = STATE(23), + [sym_break_statement] = STATE(23), + [sym_continue_statement] = STATE(23), + [sym_goto_statement] = STATE(23), + [sym_seh_try_statement] = STATE(23), + [sym_seh_leave_statement] = STATE(23), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18005,79 +18279,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(2015), - [sym_preproc_elif] = STATE(2015), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_preproc_else] = STATE(2176), + [sym_preproc_elif] = STATE(2176), + [sym_function_definition] = STATE(20), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym_seh_try_statement] = STATE(20), + [sym_seh_leave_statement] = STATE(20), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18183,27 +18457,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2281), - [sym_preproc_elif] = STATE(2281), + [sym_preproc_else] = STATE(2124), + [sym_preproc_elif] = STATE(2124), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), + [sym__old_style_function_definition] = STATE(246), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18219,37 +18493,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), + [sym_macro_type_specifier] = STATE(998), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -18349,84 +18623,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [16] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2024), - [sym_preproc_elif] = STATE(2024), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(170), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1405), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(917), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1093), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(238), + [aux_sym_preproc_def_token1] = ACTIONS(241), + [aux_sym_preproc_if_token1] = ACTIONS(244), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(249), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(247), + [aux_sym_preproc_elifdef_token1] = ACTIONS(247), + [aux_sym_preproc_elifdef_token2] = ACTIONS(247), + [sym_preproc_directive] = ACTIONS(252), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym___extension__] = ACTIONS(270), + [anon_sym_typedef] = ACTIONS(273), + [anon_sym_extern] = ACTIONS(276), + [anon_sym___attribute__] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(282), + [anon_sym___declspec] = ACTIONS(285), + [anon_sym___cdecl] = ACTIONS(288), + [anon_sym___clrcall] = ACTIONS(288), + [anon_sym___stdcall] = ACTIONS(288), + [anon_sym___fastcall] = ACTIONS(288), + [anon_sym___thiscall] = ACTIONS(288), + [anon_sym___vectorcall] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_signed] = ACTIONS(294), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym___inline] = ACTIONS(297), + [anon_sym___inline__] = ACTIONS(297), + [anon_sym___forceinline] = ACTIONS(297), + [anon_sym_thread_local] = ACTIONS(297), + [anon_sym___thread] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_constexpr] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym___restrict__] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [anon_sym__Noreturn] = ACTIONS(300), + [anon_sym_noreturn] = ACTIONS(300), + [sym_primitive_type] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(306), + [anon_sym_struct] = ACTIONS(309), + [anon_sym_union] = ACTIONS(312), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(318), + [anon_sym_case] = ACTIONS(321), + [anon_sym_default] = ACTIONS(324), + [anon_sym_while] = ACTIONS(327), + [anon_sym_do] = ACTIONS(330), + [anon_sym_for] = ACTIONS(333), + [anon_sym_return] = ACTIONS(336), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(342), + [anon_sym_goto] = ACTIONS(345), + [anon_sym___try] = ACTIONS(348), + [anon_sym___leave] = ACTIONS(351), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(357), + [anon_sym___alignof__] = ACTIONS(360), + [anon_sym___alignof] = ACTIONS(360), + [anon_sym__alignof] = ACTIONS(360), + [anon_sym_alignof] = ACTIONS(360), + [anon_sym__Alignof] = ACTIONS(360), + [anon_sym_offsetof] = ACTIONS(363), + [anon_sym__Generic] = ACTIONS(366), + [anon_sym_asm] = ACTIONS(369), + [anon_sym___asm__] = ACTIONS(369), + [sym_number_literal] = ACTIONS(372), + [anon_sym_L_SQUOTE] = ACTIONS(375), + [anon_sym_u_SQUOTE] = ACTIONS(375), + [anon_sym_U_SQUOTE] = ACTIONS(375), + [anon_sym_u8_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_L_DQUOTE] = ACTIONS(378), + [anon_sym_u_DQUOTE] = ACTIONS(378), + [anon_sym_U_DQUOTE] = ACTIONS(378), + [anon_sym_u8_DQUOTE] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_true] = ACTIONS(381), + [sym_false] = ACTIONS(381), + [anon_sym_NULL] = ACTIONS(384), + [anon_sym_nullptr] = ACTIONS(384), + [sym_comment] = ACTIONS(3), + }, + [17] = { + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_call] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_preproc_else] = STATE(2293), + [sym_preproc_elif] = STATE(2293), + [sym_function_definition] = STATE(24), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(24), + [sym_labeled_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_switch_statement] = STATE(24), + [sym_case_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_statement] = STATE(24), + [sym_for_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_break_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_goto_statement] = STATE(24), + [sym_seh_try_statement] = STATE(24), + [sym_seh_leave_statement] = STATE(24), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(235), + [aux_sym_preproc_if_token2] = ACTIONS(387), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18520,85 +18966,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [17] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(2283), - [sym_preproc_elif] = STATE(2283), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [18] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2198), + [sym_preproc_elif] = STATE(2198), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_if_token2] = ACTIONS(389), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18692,85 +19138,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(2116), - [sym_preproc_elif] = STATE(2116), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [19] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2296), + [sym_preproc_elif] = STATE(2296), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(239), + [aux_sym_preproc_if_token2] = ACTIONS(391), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18864,34 +19310,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [19] = { + [20] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2042), - [sym_preproc_elif] = STATE(2042), + [sym_preproc_else] = STATE(2130), + [sym_preproc_elif] = STATE(2130), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), + [sym__old_style_function_definition] = STATE(246), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18907,42 +19353,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), + [sym_macro_type_specifier] = STATE(998), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(393), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19036,85 +19482,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [20] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(2152), - [sym_preproc_elif] = STATE(2152), - [sym_function_definition] = STATE(24), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym_seh_try_statement] = STATE(24), - [sym_seh_leave_statement] = STATE(24), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [21] = { + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(2134), + [sym_preproc_elif] = STATE(2134), + [sym_function_definition] = STATE(18), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym_seh_try_statement] = STATE(18), + [sym_seh_leave_statement] = STATE(18), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(18), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_if_token2] = ACTIONS(395), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19208,85 +19654,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [21] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2173), - [sym_preproc_elif] = STATE(2173), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [22] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(2285), + [sym_preproc_elif] = STATE(2285), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym_seh_try_statement] = STATE(25), + [sym_seh_leave_statement] = STATE(25), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(245), + [aux_sym_preproc_if_token2] = ACTIONS(397), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19380,85 +19826,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [22] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(2023), - [sym_preproc_elif] = STATE(2023), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym_seh_try_statement] = STATE(21), - [sym_seh_leave_statement] = STATE(21), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [23] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2167), + [sym_preproc_elif] = STATE(2167), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_if_token2] = ACTIONS(399), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19552,85 +19998,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(2224), - [sym_preproc_elif] = STATE(2224), - [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym_seh_try_statement] = STATE(19), - [sym_seh_leave_statement] = STATE(19), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [24] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(2375), + [sym_preproc_elif] = STATE(2375), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_if_token2] = ACTIONS(401), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19724,34 +20170,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [24] = { + [25] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2099), - [sym_preproc_elif] = STATE(2099), + [sym_preproc_else] = STATE(2262), + [sym_preproc_elif] = STATE(2262), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), + [sym__old_style_function_definition] = STATE(246), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19767,42 +20213,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), + [sym_macro_type_specifier] = STATE(998), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(251), + [aux_sym_preproc_if_token2] = ACTIONS(403), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19896,85 +20342,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [25] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2284), - [sym_preproc_elif] = STATE(2284), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [26] = { + [sym_preproc_include] = STATE(15), + [sym_preproc_def] = STATE(15), + [sym_preproc_function_def] = STATE(15), + [sym_preproc_call] = STATE(15), + [sym_preproc_if] = STATE(15), + [sym_preproc_ifdef] = STATE(15), + [sym_preproc_else] = STATE(2216), + [sym_preproc_elif] = STATE(2216), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(246), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_case_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_goto_statement] = STATE(15), + [sym_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(253), + [aux_sym_preproc_if_token2] = ACTIONS(405), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -20068,178 +20514,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(140), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1502), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(886), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1159), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym_seh_try_statement] = STATE(26), - [sym_seh_leave_statement] = STATE(26), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(255), - [aux_sym_preproc_include_token1] = ACTIONS(258), - [aux_sym_preproc_def_token1] = ACTIONS(261), - [aux_sym_preproc_if_token1] = ACTIONS(264), - [aux_sym_preproc_if_token2] = ACTIONS(267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(269), - [aux_sym_preproc_else_token1] = ACTIONS(267), - [aux_sym_preproc_elif_token1] = ACTIONS(267), - [aux_sym_preproc_elifdef_token1] = ACTIONS(267), - [aux_sym_preproc_elifdef_token2] = ACTIONS(267), - [sym_preproc_directive] = ACTIONS(272), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(287), - [anon_sym___extension__] = ACTIONS(290), - [anon_sym_typedef] = ACTIONS(293), - [anon_sym_extern] = ACTIONS(296), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(335), - [anon_sym_switch] = ACTIONS(338), - [anon_sym_case] = ACTIONS(341), - [anon_sym_default] = ACTIONS(344), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(350), - [anon_sym_for] = ACTIONS(353), - [anon_sym_return] = ACTIONS(356), - [anon_sym_break] = ACTIONS(359), - [anon_sym_continue] = ACTIONS(362), - [anon_sym_goto] = ACTIONS(365), - [anon_sym___try] = ACTIONS(368), - [anon_sym___leave] = ACTIONS(371), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, [27] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), @@ -20248,24 +20522,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(240), + [sym__old_style_function_definition] = STATE(246), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1504), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1409), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(889), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(922), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1158), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1092), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20281,93 +20555,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1137), + [sym_macro_type_specifier] = STATE(998), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(407), [aux_sym_preproc_include_token1] = ACTIONS(410), [aux_sym_preproc_def_token1] = ACTIONS(413), [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(267), + [aux_sym_preproc_if_token2] = ACTIONS(247), [aux_sym_preproc_ifdef_token1] = ACTIONS(419), [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(267), - [aux_sym_preproc_elif_token1] = ACTIONS(267), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(247), [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), [anon_sym_SEMI] = ACTIONS(425), [anon_sym___extension__] = ACTIONS(428), [anon_sym_typedef] = ACTIONS(431), [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), + [anon_sym___attribute__] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(282), + [anon_sym___declspec] = ACTIONS(285), + [anon_sym___cdecl] = ACTIONS(288), + [anon_sym___clrcall] = ACTIONS(288), + [anon_sym___stdcall] = ACTIONS(288), + [anon_sym___fastcall] = ACTIONS(288), + [anon_sym___thiscall] = ACTIONS(288), + [anon_sym___vectorcall] = ACTIONS(288), [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), + [anon_sym_signed] = ACTIONS(294), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym___inline] = ACTIONS(297), + [anon_sym___inline__] = ACTIONS(297), + [anon_sym___forceinline] = ACTIONS(297), + [anon_sym_thread_local] = ACTIONS(297), + [anon_sym___thread] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_constexpr] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym___restrict__] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [anon_sym__Noreturn] = ACTIONS(300), + [anon_sym_noreturn] = ACTIONS(300), + [sym_primitive_type] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(306), + [anon_sym_struct] = ACTIONS(309), + [anon_sym_union] = ACTIONS(312), [anon_sym_if] = ACTIONS(440), [anon_sym_switch] = ACTIONS(443), [anon_sym_case] = ACTIONS(446), @@ -20381,107 +20655,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(470), [anon_sym___try] = ACTIONS(473), [anon_sym___leave] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(357), + [anon_sym___alignof__] = ACTIONS(360), + [anon_sym___alignof] = ACTIONS(360), + [anon_sym__alignof] = ACTIONS(360), + [anon_sym_alignof] = ACTIONS(360), + [anon_sym__Alignof] = ACTIONS(360), + [anon_sym_offsetof] = ACTIONS(363), + [anon_sym__Generic] = ACTIONS(366), + [anon_sym_asm] = ACTIONS(369), + [anon_sym___asm__] = ACTIONS(369), + [sym_number_literal] = ACTIONS(372), + [anon_sym_L_SQUOTE] = ACTIONS(375), + [anon_sym_u_SQUOTE] = ACTIONS(375), + [anon_sym_U_SQUOTE] = ACTIONS(375), + [anon_sym_u8_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_L_DQUOTE] = ACTIONS(378), + [anon_sym_u_DQUOTE] = ACTIONS(378), + [anon_sym_U_DQUOTE] = ACTIONS(378), + [anon_sym_u8_DQUOTE] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_true] = ACTIONS(381), + [sym_false] = ACTIONS(381), + [anon_sym_NULL] = ACTIONS(384), + [anon_sym_nullptr] = ACTIONS(384), [sym_comment] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_call] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20579,85 +20853,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(471), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1509), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(880), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1157), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_include_token1] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(533), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(537), - [aux_sym_preproc_ifdef_token1] = ACTIONS(539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(541), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20665,10 +20938,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20678,7 +20951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(529), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20704,19 +20978,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20747,77 +21021,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym_seh_try_statement] = STATE(32), + [sym_seh_leave_statement] = STATE(32), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20846,7 +21120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(531), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20915,245 +21189,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym__old_style_function_definition] = STATE(471), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1509), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(880), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1157), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym_seh_try_statement] = STATE(29), - [sym_seh_leave_statement] = STATE(29), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(529), - [aux_sym_preproc_include_token1] = ACTIONS(531), - [aux_sym_preproc_def_token1] = ACTIONS(533), - [aux_sym_preproc_if_token1] = ACTIONS(535), - [aux_sym_preproc_if_token2] = ACTIONS(581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(539), - [sym_preproc_directive] = ACTIONS(541), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), - [anon_sym_extern] = ACTIONS(549), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [32] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21182,7 +21288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(533), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21250,78 +21356,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_seh_try_statement] = STATE(37), - [sym_seh_leave_statement] = STATE(37), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [32] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21350,7 +21456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(535), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21418,414 +21524,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(587), - [aux_sym_preproc_include_token1] = ACTIONS(590), - [aux_sym_preproc_def_token1] = ACTIONS(593), - [aux_sym_preproc_if_token1] = ACTIONS(596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(599), - [aux_sym_preproc_ifdef_token2] = ACTIONS(599), - [sym_preproc_directive] = ACTIONS(602), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym___extension__] = ACTIONS(608), - [anon_sym_typedef] = ACTIONS(611), - [anon_sym_extern] = ACTIONS(614), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(625), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(637), - [anon_sym_for] = ACTIONS(640), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(649), - [anon_sym_goto] = ACTIONS(652), - [anon_sym___try] = ACTIONS(655), - [anon_sym___leave] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [35] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(471), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1509), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(880), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1157), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym_seh_try_statement] = STATE(35), - [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(661), - [aux_sym_preproc_include_token1] = ACTIONS(664), - [aux_sym_preproc_def_token1] = ACTIONS(667), - [aux_sym_preproc_if_token1] = ACTIONS(670), - [aux_sym_preproc_if_token2] = ACTIONS(267), - [aux_sym_preproc_ifdef_token1] = ACTIONS(673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(673), - [sym_preproc_directive] = ACTIONS(676), - [anon_sym_LPAREN2] = ACTIONS(275), - [anon_sym_BANG] = ACTIONS(278), - [anon_sym_TILDE] = ACTIONS(278), - [anon_sym_DASH] = ACTIONS(281), - [anon_sym_PLUS] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(284), - [anon_sym_AMP] = ACTIONS(284), - [anon_sym_SEMI] = ACTIONS(679), - [anon_sym___extension__] = ACTIONS(682), - [anon_sym_typedef] = ACTIONS(685), - [anon_sym_extern] = ACTIONS(688), - [anon_sym___attribute__] = ACTIONS(299), - [anon_sym_LBRACK_LBRACK] = ACTIONS(302), - [anon_sym___declspec] = ACTIONS(305), - [anon_sym___cdecl] = ACTIONS(308), - [anon_sym___clrcall] = ACTIONS(308), - [anon_sym___stdcall] = ACTIONS(308), - [anon_sym___fastcall] = ACTIONS(308), - [anon_sym___thiscall] = ACTIONS(308), - [anon_sym___vectorcall] = ACTIONS(308), - [anon_sym_LBRACE] = ACTIONS(691), - [anon_sym_signed] = ACTIONS(314), - [anon_sym_unsigned] = ACTIONS(314), - [anon_sym_long] = ACTIONS(314), - [anon_sym_short] = ACTIONS(314), - [anon_sym_static] = ACTIONS(317), - [anon_sym_auto] = ACTIONS(317), - [anon_sym_register] = ACTIONS(317), - [anon_sym_inline] = ACTIONS(317), - [anon_sym___inline] = ACTIONS(317), - [anon_sym___inline__] = ACTIONS(317), - [anon_sym___forceinline] = ACTIONS(317), - [anon_sym_thread_local] = ACTIONS(317), - [anon_sym___thread] = ACTIONS(317), - [anon_sym_const] = ACTIONS(320), - [anon_sym_constexpr] = ACTIONS(320), - [anon_sym_volatile] = ACTIONS(320), - [anon_sym_restrict] = ACTIONS(320), - [anon_sym___restrict__] = ACTIONS(320), - [anon_sym__Atomic] = ACTIONS(320), - [anon_sym__Noreturn] = ACTIONS(320), - [anon_sym_noreturn] = ACTIONS(320), - [sym_primitive_type] = ACTIONS(323), - [anon_sym_enum] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(329), - [anon_sym_union] = ACTIONS(332), - [anon_sym_if] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(697), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(703), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(709), - [anon_sym_for] = ACTIONS(712), - [anon_sym_return] = ACTIONS(715), - [anon_sym_break] = ACTIONS(718), - [anon_sym_continue] = ACTIONS(721), - [anon_sym_goto] = ACTIONS(724), - [anon_sym___try] = ACTIONS(727), - [anon_sym___leave] = ACTIONS(730), - [anon_sym_DASH_DASH] = ACTIONS(374), - [anon_sym_PLUS_PLUS] = ACTIONS(374), - [anon_sym_sizeof] = ACTIONS(377), - [anon_sym___alignof__] = ACTIONS(380), - [anon_sym___alignof] = ACTIONS(380), - [anon_sym__alignof] = ACTIONS(380), - [anon_sym_alignof] = ACTIONS(380), - [anon_sym__Alignof] = ACTIONS(380), - [anon_sym_offsetof] = ACTIONS(383), - [anon_sym__Generic] = ACTIONS(386), - [anon_sym_asm] = ACTIONS(389), - [anon_sym___asm__] = ACTIONS(389), - [sym_number_literal] = ACTIONS(392), - [anon_sym_L_SQUOTE] = ACTIONS(395), - [anon_sym_u_SQUOTE] = ACTIONS(395), - [anon_sym_U_SQUOTE] = ACTIONS(395), - [anon_sym_u8_SQUOTE] = ACTIONS(395), - [anon_sym_SQUOTE] = ACTIONS(395), - [anon_sym_L_DQUOTE] = ACTIONS(398), - [anon_sym_u_DQUOTE] = ACTIONS(398), - [anon_sym_U_DQUOTE] = ACTIONS(398), - [anon_sym_u8_DQUOTE] = ACTIONS(398), - [anon_sym_DQUOTE] = ACTIONS(398), - [sym_true] = ACTIONS(401), - [sym_false] = ACTIONS(401), - [anon_sym_NULL] = ACTIONS(404), - [anon_sym_nullptr] = ACTIONS(404), - [sym_comment] = ACTIONS(3), - }, - [36] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [33] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21854,7 +21624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(537), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21922,78 +21692,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [37] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [34] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym_seh_try_statement] = STATE(31), + [sym_seh_leave_statement] = STATE(31), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22022,7 +21792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_RBRACE] = ACTIONS(539), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22090,78 +21860,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [38] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [35] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym_seh_try_statement] = STATE(33), + [sym_seh_leave_statement] = STATE(33), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22190,7 +21960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(541), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22258,85 +22028,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [39] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [36] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(440), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1401), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(911), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1094), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(543), + [aux_sym_preproc_include_token1] = ACTIONS(545), + [aux_sym_preproc_def_token1] = ACTIONS(547), + [aux_sym_preproc_if_token1] = ACTIONS(549), + [aux_sym_preproc_if_token2] = ACTIONS(551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(555), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22344,10 +22115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), + [anon_sym_extern] = ACTIONS(563), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -22357,8 +22128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22384,19 +22154,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -22426,78 +22196,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [37] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22526,7 +22296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22594,78 +22364,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [41] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [38] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym__old_style_function_definition] = STATE(440), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1401), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(911), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1094), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym_seh_try_statement] = STATE(36), + [sym_seh_leave_statement] = STATE(36), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(543), + [aux_sym_preproc_include_token1] = ACTIONS(545), + [aux_sym_preproc_def_token1] = ACTIONS(547), + [aux_sym_preproc_if_token1] = ACTIONS(549), + [aux_sym_preproc_if_token2] = ACTIONS(595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(553), + [sym_preproc_directive] = ACTIONS(555), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), + [anon_sym_extern] = ACTIONS(563), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [39] = { + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22694,7 +22632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22762,78 +22700,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [42] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [40] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(599), + [aux_sym_preproc_include_token1] = ACTIONS(602), + [aux_sym_preproc_def_token1] = ACTIONS(605), + [aux_sym_preproc_if_token1] = ACTIONS(608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(611), + [sym_preproc_directive] = ACTIONS(614), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym___extension__] = ACTIONS(620), + [anon_sym_typedef] = ACTIONS(623), + [anon_sym_extern] = ACTIONS(626), + [anon_sym___attribute__] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(282), + [anon_sym___declspec] = ACTIONS(285), + [anon_sym___cdecl] = ACTIONS(288), + [anon_sym___clrcall] = ACTIONS(288), + [anon_sym___stdcall] = ACTIONS(288), + [anon_sym___fastcall] = ACTIONS(288), + [anon_sym___thiscall] = ACTIONS(288), + [anon_sym___vectorcall] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_signed] = ACTIONS(294), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym___inline] = ACTIONS(297), + [anon_sym___inline__] = ACTIONS(297), + [anon_sym___forceinline] = ACTIONS(297), + [anon_sym_thread_local] = ACTIONS(297), + [anon_sym___thread] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_constexpr] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym___restrict__] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [anon_sym__Noreturn] = ACTIONS(300), + [anon_sym_noreturn] = ACTIONS(300), + [sym_primitive_type] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(306), + [anon_sym_struct] = ACTIONS(309), + [anon_sym_union] = ACTIONS(312), + [anon_sym_if] = ACTIONS(634), + [anon_sym_switch] = ACTIONS(637), + [anon_sym_case] = ACTIONS(640), + [anon_sym_default] = ACTIONS(643), + [anon_sym_while] = ACTIONS(646), + [anon_sym_do] = ACTIONS(649), + [anon_sym_for] = ACTIONS(652), + [anon_sym_return] = ACTIONS(655), + [anon_sym_break] = ACTIONS(658), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_goto] = ACTIONS(664), + [anon_sym___try] = ACTIONS(667), + [anon_sym___leave] = ACTIONS(670), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(357), + [anon_sym___alignof__] = ACTIONS(360), + [anon_sym___alignof] = ACTIONS(360), + [anon_sym__alignof] = ACTIONS(360), + [anon_sym_alignof] = ACTIONS(360), + [anon_sym__Alignof] = ACTIONS(360), + [anon_sym_offsetof] = ACTIONS(363), + [anon_sym__Generic] = ACTIONS(366), + [anon_sym_asm] = ACTIONS(369), + [anon_sym___asm__] = ACTIONS(369), + [sym_number_literal] = ACTIONS(372), + [anon_sym_L_SQUOTE] = ACTIONS(375), + [anon_sym_u_SQUOTE] = ACTIONS(375), + [anon_sym_U_SQUOTE] = ACTIONS(375), + [anon_sym_u8_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_L_DQUOTE] = ACTIONS(378), + [anon_sym_u_DQUOTE] = ACTIONS(378), + [anon_sym_U_DQUOTE] = ACTIONS(378), + [anon_sym_u8_DQUOTE] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_true] = ACTIONS(381), + [sym_false] = ACTIONS(381), + [anon_sym_NULL] = ACTIONS(384), + [anon_sym_nullptr] = ACTIONS(384), + [sym_comment] = ACTIONS(3), + }, + [41] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22862,7 +22968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_RBRACE] = ACTIONS(673), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22930,78 +23036,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [43] = { - [sym_preproc_include] = STATE(47), - [sym_preproc_def] = STATE(47), - [sym_preproc_function_def] = STATE(47), - [sym_preproc_call] = STATE(47), - [sym_preproc_if] = STATE(47), - [sym_preproc_ifdef] = STATE(47), - [sym_function_definition] = STATE(47), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(47), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_case_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym_seh_try_statement] = STATE(47), - [sym_seh_leave_statement] = STATE(47), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(47), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [42] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23030,7 +23136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(675), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23098,78 +23204,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [44] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(42), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym_seh_try_statement] = STATE(42), - [sym_seh_leave_statement] = STATE(42), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [43] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23198,7 +23304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_RBRACE] = ACTIONS(677), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23266,78 +23372,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [45] = { - [sym_preproc_include] = STATE(48), - [sym_preproc_def] = STATE(48), - [sym_preproc_function_def] = STATE(48), - [sym_preproc_call] = STATE(48), - [sym_preproc_if] = STATE(48), - [sym_preproc_ifdef] = STATE(48), - [sym_function_definition] = STATE(48), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_seh_try_statement] = STATE(48), - [sym_seh_leave_statement] = STATE(48), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(48), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [44] = { + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym_seh_try_statement] = STATE(28), + [sym_seh_leave_statement] = STATE(28), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23366,7 +23472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(679), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23434,78 +23540,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [45] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym_seh_try_statement] = STATE(42), + [sym_seh_leave_statement] = STATE(42), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23534,7 +23640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(753), + [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23602,78 +23708,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [47] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [46] = { + [sym_preproc_include] = STATE(49), + [sym_preproc_def] = STATE(49), + [sym_preproc_function_def] = STATE(49), + [sym_preproc_call] = STATE(49), + [sym_preproc_if] = STATE(49), + [sym_preproc_ifdef] = STATE(49), + [sym_function_definition] = STATE(49), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(49), + [sym_labeled_statement] = STATE(49), + [sym_expression_statement] = STATE(49), + [sym_if_statement] = STATE(49), + [sym_switch_statement] = STATE(49), + [sym_case_statement] = STATE(49), + [sym_while_statement] = STATE(49), + [sym_do_statement] = STATE(49), + [sym_for_statement] = STATE(49), + [sym_return_statement] = STATE(49), + [sym_break_statement] = STATE(49), + [sym_continue_statement] = STATE(49), + [sym_goto_statement] = STATE(49), + [sym_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23702,7 +23808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(683), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23770,78 +23876,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [47] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym__old_style_function_definition] = STATE(440), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1401), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(911), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1094), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(685), + [aux_sym_preproc_include_token1] = ACTIONS(688), + [aux_sym_preproc_def_token1] = ACTIONS(691), + [aux_sym_preproc_if_token1] = ACTIONS(694), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(697), + [sym_preproc_directive] = ACTIONS(700), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym___extension__] = ACTIONS(706), + [anon_sym_typedef] = ACTIONS(709), + [anon_sym_extern] = ACTIONS(712), + [anon_sym___attribute__] = ACTIONS(279), + [anon_sym_LBRACK_LBRACK] = ACTIONS(282), + [anon_sym___declspec] = ACTIONS(285), + [anon_sym___cdecl] = ACTIONS(288), + [anon_sym___clrcall] = ACTIONS(288), + [anon_sym___stdcall] = ACTIONS(288), + [anon_sym___fastcall] = ACTIONS(288), + [anon_sym___thiscall] = ACTIONS(288), + [anon_sym___vectorcall] = ACTIONS(288), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_signed] = ACTIONS(294), + [anon_sym_unsigned] = ACTIONS(294), + [anon_sym_long] = ACTIONS(294), + [anon_sym_short] = ACTIONS(294), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym___inline] = ACTIONS(297), + [anon_sym___inline__] = ACTIONS(297), + [anon_sym___forceinline] = ACTIONS(297), + [anon_sym_thread_local] = ACTIONS(297), + [anon_sym___thread] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_constexpr] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym___restrict__] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [anon_sym__Noreturn] = ACTIONS(300), + [anon_sym_noreturn] = ACTIONS(300), + [sym_primitive_type] = ACTIONS(303), + [anon_sym_enum] = ACTIONS(306), + [anon_sym_struct] = ACTIONS(309), + [anon_sym_union] = ACTIONS(312), + [anon_sym_if] = ACTIONS(718), + [anon_sym_switch] = ACTIONS(721), + [anon_sym_case] = ACTIONS(724), + [anon_sym_default] = ACTIONS(727), + [anon_sym_while] = ACTIONS(730), + [anon_sym_do] = ACTIONS(733), + [anon_sym_for] = ACTIONS(736), + [anon_sym_return] = ACTIONS(739), + [anon_sym_break] = ACTIONS(742), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_goto] = ACTIONS(748), + [anon_sym___try] = ACTIONS(751), + [anon_sym___leave] = ACTIONS(754), + [anon_sym_DASH_DASH] = ACTIONS(354), + [anon_sym_PLUS_PLUS] = ACTIONS(354), + [anon_sym_sizeof] = ACTIONS(357), + [anon_sym___alignof__] = ACTIONS(360), + [anon_sym___alignof] = ACTIONS(360), + [anon_sym__alignof] = ACTIONS(360), + [anon_sym_alignof] = ACTIONS(360), + [anon_sym__Alignof] = ACTIONS(360), + [anon_sym_offsetof] = ACTIONS(363), + [anon_sym__Generic] = ACTIONS(366), + [anon_sym_asm] = ACTIONS(369), + [anon_sym___asm__] = ACTIONS(369), + [sym_number_literal] = ACTIONS(372), + [anon_sym_L_SQUOTE] = ACTIONS(375), + [anon_sym_u_SQUOTE] = ACTIONS(375), + [anon_sym_U_SQUOTE] = ACTIONS(375), + [anon_sym_u8_SQUOTE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_L_DQUOTE] = ACTIONS(378), + [anon_sym_u_DQUOTE] = ACTIONS(378), + [anon_sym_U_DQUOTE] = ACTIONS(378), + [anon_sym_u8_DQUOTE] = ACTIONS(378), + [anon_sym_DQUOTE] = ACTIONS(378), + [sym_true] = ACTIONS(381), + [sym_false] = ACTIONS(381), + [anon_sym_NULL] = ACTIONS(384), + [anon_sym_nullptr] = ACTIONS(384), + [sym_comment] = ACTIONS(3), + }, [48] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym_seh_try_statement] = STATE(43), + [sym_seh_leave_statement] = STATE(43), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23939,77 +24213,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_seh_try_statement] = STATE(40), + [sym_seh_leave_statement] = STATE(40), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24107,77 +24381,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_seh_try_statement] = STATE(34), - [sym_seh_leave_statement] = STATE(34), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym_seh_try_statement] = STATE(37), + [sym_seh_leave_statement] = STATE(37), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24275,77 +24549,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym__old_style_function_definition] = STATE(424), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1500), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(879), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1154), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(430), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1412), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(913), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1089), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24443,75 +24717,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [52] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(485), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1506), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(884), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1156), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1344), - [sym__expression_not_binary] = STATE(1342), - [sym__string] = STATE(1342), - [sym_conditional_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1342), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(1342), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(1342), - [sym_cast_expression] = STATE(1342), - [sym_sizeof_expression] = STATE(1342), - [sym_alignof_expression] = STATE(1342), - [sym_offsetof_expression] = STATE(1342), - [sym_generic_expression] = STATE(1342), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(1342), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(1342), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(1342), - [sym_concatenated_string] = STATE(1342), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(1342), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym__old_style_function_definition] = STATE(511), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1410), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(912), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1091), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(1387), + [sym__expression_not_binary] = STATE(1388), + [sym__string] = STATE(1388), + [sym_conditional_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1388), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(1388), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(1388), + [sym_cast_expression] = STATE(1388), + [sym_sizeof_expression] = STATE(1388), + [sym_alignof_expression] = STATE(1388), + [sym_offsetof_expression] = STATE(1388), + [sym_generic_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(1388), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(1388), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(1388), + [sym_concatenated_string] = STATE(1388), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(1388), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [ts_builtin_sym_end] = ACTIONS(765), + [sym_identifier] = ACTIONS(767), + [aux_sym_preproc_include_token1] = ACTIONS(770), + [aux_sym_preproc_def_token1] = ACTIONS(773), + [aux_sym_preproc_if_token1] = ACTIONS(776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(779), + [aux_sym_preproc_ifdef_token2] = ACTIONS(779), + [sym_preproc_directive] = ACTIONS(782), + [anon_sym_LPAREN2] = ACTIONS(785), + [anon_sym_BANG] = ACTIONS(788), + [anon_sym_TILDE] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_STAR] = ACTIONS(794), + [anon_sym_AMP] = ACTIONS(794), + [anon_sym___extension__] = ACTIONS(797), + [anon_sym_typedef] = ACTIONS(800), + [anon_sym_extern] = ACTIONS(803), + [anon_sym___attribute__] = ACTIONS(806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(809), + [anon_sym___declspec] = ACTIONS(812), + [anon_sym___cdecl] = ACTIONS(815), + [anon_sym___clrcall] = ACTIONS(815), + [anon_sym___stdcall] = ACTIONS(815), + [anon_sym___fastcall] = ACTIONS(815), + [anon_sym___thiscall] = ACTIONS(815), + [anon_sym___vectorcall] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(818), + [anon_sym_signed] = ACTIONS(821), + [anon_sym_unsigned] = ACTIONS(821), + [anon_sym_long] = ACTIONS(821), + [anon_sym_short] = ACTIONS(821), + [anon_sym_static] = ACTIONS(824), + [anon_sym_auto] = ACTIONS(824), + [anon_sym_register] = ACTIONS(824), + [anon_sym_inline] = ACTIONS(824), + [anon_sym___inline] = ACTIONS(824), + [anon_sym___inline__] = ACTIONS(824), + [anon_sym___forceinline] = ACTIONS(824), + [anon_sym_thread_local] = ACTIONS(824), + [anon_sym___thread] = ACTIONS(824), + [anon_sym_const] = ACTIONS(827), + [anon_sym_constexpr] = ACTIONS(827), + [anon_sym_volatile] = ACTIONS(827), + [anon_sym_restrict] = ACTIONS(827), + [anon_sym___restrict__] = ACTIONS(827), + [anon_sym__Atomic] = ACTIONS(827), + [anon_sym__Noreturn] = ACTIONS(827), + [anon_sym_noreturn] = ACTIONS(827), + [sym_primitive_type] = ACTIONS(830), + [anon_sym_enum] = ACTIONS(833), + [anon_sym_struct] = ACTIONS(836), + [anon_sym_union] = ACTIONS(839), + [anon_sym_if] = ACTIONS(842), + [anon_sym_switch] = ACTIONS(845), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(851), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(857), + [anon_sym_for] = ACTIONS(860), + [anon_sym_return] = ACTIONS(863), + [anon_sym_break] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_goto] = ACTIONS(872), + [anon_sym_DASH_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(875), + [anon_sym_sizeof] = ACTIONS(878), + [anon_sym___alignof__] = ACTIONS(881), + [anon_sym___alignof] = ACTIONS(881), + [anon_sym__alignof] = ACTIONS(881), + [anon_sym_alignof] = ACTIONS(881), + [anon_sym__Alignof] = ACTIONS(881), + [anon_sym_offsetof] = ACTIONS(884), + [anon_sym__Generic] = ACTIONS(887), + [anon_sym_asm] = ACTIONS(890), + [anon_sym___asm__] = ACTIONS(890), + [sym_number_literal] = ACTIONS(893), + [anon_sym_L_SQUOTE] = ACTIONS(896), + [anon_sym_u_SQUOTE] = ACTIONS(896), + [anon_sym_U_SQUOTE] = ACTIONS(896), + [anon_sym_u8_SQUOTE] = ACTIONS(896), + [anon_sym_SQUOTE] = ACTIONS(896), + [anon_sym_L_DQUOTE] = ACTIONS(899), + [anon_sym_u_DQUOTE] = ACTIONS(899), + [anon_sym_U_DQUOTE] = ACTIONS(899), + [anon_sym_u8_DQUOTE] = ACTIONS(899), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym_true] = ACTIONS(902), + [sym_false] = ACTIONS(902), + [anon_sym_NULL] = ACTIONS(905), + [anon_sym_nullptr] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + }, + [53] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym__old_style_function_definition] = STATE(511), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1410), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(912), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(1091), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(1387), + [sym__expression_not_binary] = STATE(1388), + [sym__string] = STATE(1388), + [sym_conditional_expression] = STATE(1388), + [sym_assignment_expression] = STATE(1388), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(1388), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(1388), + [sym_cast_expression] = STATE(1388), + [sym_sizeof_expression] = STATE(1388), + [sym_alignof_expression] = STATE(1388), + [sym_offsetof_expression] = STATE(1388), + [sym_generic_expression] = STATE(1388), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(1388), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(1388), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(1388), + [sym_concatenated_string] = STATE(1388), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(1388), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [ts_builtin_sym_end] = ACTIONS(908), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -24604,240 +25040,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(485), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1506), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_call_modifier] = STATE(884), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1156), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1344), - [sym__expression_not_binary] = STATE(1342), - [sym__string] = STATE(1342), - [sym_conditional_expression] = STATE(1342), - [sym_assignment_expression] = STATE(1342), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(1342), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(1342), - [sym_cast_expression] = STATE(1342), - [sym_sizeof_expression] = STATE(1342), - [sym_alignof_expression] = STATE(1342), - [sym_offsetof_expression] = STATE(1342), - [sym_generic_expression] = STATE(1342), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(1342), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(1342), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(1342), - [sym_concatenated_string] = STATE(1342), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(1342), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(767), - [sym_identifier] = ACTIONS(769), - [aux_sym_preproc_include_token1] = ACTIONS(772), - [aux_sym_preproc_def_token1] = ACTIONS(775), - [aux_sym_preproc_if_token1] = ACTIONS(778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(781), - [aux_sym_preproc_ifdef_token2] = ACTIONS(781), - [sym_preproc_directive] = ACTIONS(784), - [anon_sym_LPAREN2] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(790), - [anon_sym_TILDE] = ACTIONS(790), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(796), - [anon_sym_AMP] = ACTIONS(796), - [anon_sym___extension__] = ACTIONS(799), - [anon_sym_typedef] = ACTIONS(802), - [anon_sym_extern] = ACTIONS(805), - [anon_sym___attribute__] = ACTIONS(808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(811), - [anon_sym___declspec] = ACTIONS(814), - [anon_sym___cdecl] = ACTIONS(817), - [anon_sym___clrcall] = ACTIONS(817), - [anon_sym___stdcall] = ACTIONS(817), - [anon_sym___fastcall] = ACTIONS(817), - [anon_sym___thiscall] = ACTIONS(817), - [anon_sym___vectorcall] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(820), - [anon_sym_signed] = ACTIONS(823), - [anon_sym_unsigned] = ACTIONS(823), - [anon_sym_long] = ACTIONS(823), - [anon_sym_short] = ACTIONS(823), - [anon_sym_static] = ACTIONS(826), - [anon_sym_auto] = ACTIONS(826), - [anon_sym_register] = ACTIONS(826), - [anon_sym_inline] = ACTIONS(826), - [anon_sym___inline] = ACTIONS(826), - [anon_sym___inline__] = ACTIONS(826), - [anon_sym___forceinline] = ACTIONS(826), - [anon_sym_thread_local] = ACTIONS(826), - [anon_sym___thread] = ACTIONS(826), - [anon_sym_const] = ACTIONS(829), - [anon_sym_constexpr] = ACTIONS(829), - [anon_sym_volatile] = ACTIONS(829), - [anon_sym_restrict] = ACTIONS(829), - [anon_sym___restrict__] = ACTIONS(829), - [anon_sym__Atomic] = ACTIONS(829), - [anon_sym__Noreturn] = ACTIONS(829), - [anon_sym_noreturn] = ACTIONS(829), - [sym_primitive_type] = ACTIONS(832), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_struct] = ACTIONS(838), - [anon_sym_union] = ACTIONS(841), - [anon_sym_if] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(847), - [anon_sym_case] = ACTIONS(850), - [anon_sym_default] = ACTIONS(853), - [anon_sym_while] = ACTIONS(856), - [anon_sym_do] = ACTIONS(859), - [anon_sym_for] = ACTIONS(862), - [anon_sym_return] = ACTIONS(865), - [anon_sym_break] = ACTIONS(868), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_goto] = ACTIONS(874), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_sizeof] = ACTIONS(880), - [anon_sym___alignof__] = ACTIONS(883), - [anon_sym___alignof] = ACTIONS(883), - [anon_sym__alignof] = ACTIONS(883), - [anon_sym_alignof] = ACTIONS(883), - [anon_sym__Alignof] = ACTIONS(883), - [anon_sym_offsetof] = ACTIONS(886), - [anon_sym__Generic] = ACTIONS(889), - [anon_sym_asm] = ACTIONS(892), - [anon_sym___asm__] = ACTIONS(892), - [sym_number_literal] = ACTIONS(895), - [anon_sym_L_SQUOTE] = ACTIONS(898), - [anon_sym_u_SQUOTE] = ACTIONS(898), - [anon_sym_U_SQUOTE] = ACTIONS(898), - [anon_sym_u8_SQUOTE] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_L_DQUOTE] = ACTIONS(901), - [anon_sym_u_DQUOTE] = ACTIONS(901), - [anon_sym_U_DQUOTE] = ACTIONS(901), - [anon_sym_u8_DQUOTE] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [sym_true] = ACTIONS(904), - [sym_false] = ACTIONS(904), - [anon_sym_NULL] = ACTIONS(907), - [anon_sym_nullptr] = ACTIONS(907), - [sym_comment] = ACTIONS(3), - }, [54] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1513), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym_seh_try_statement] = STATE(57), - [sym_seh_leave_statement] = STATE(57), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(57), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token1] = ACTIONS(912), - [aux_sym_preproc_elifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [aux_sym_preproc_else_token1] = ACTIONS(913), + [aux_sym_preproc_elif_token1] = ACTIONS(913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym___extension__] = ACTIONS(930), + [anon_sym_typedef] = ACTIONS(933), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(972), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(975), + [anon_sym_do] = ACTIONS(978), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(984), + [anon_sym_break] = ACTIONS(987), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_goto] = ACTIONS(993), + [anon_sym___try] = ACTIONS(996), + [anon_sym___leave] = ACTIONS(999), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [55] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token2] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [aux_sym_preproc_else_token1] = ACTIONS(1037), + [aux_sym_preproc_elif_token1] = ACTIONS(1037), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24852,12 +25287,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24885,10 +25320,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -24927,22 +25362,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [55] = { + [56] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1513), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -24957,48 +25392,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(58), [sym_seh_try_statement] = STATE(58), [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [aux_sym_preproc_else_token1] = ACTIONS(914), - [aux_sym_preproc_elif_token1] = ACTIONS(914), - [aux_sym_preproc_elifdef_token1] = ACTIONS(914), - [aux_sym_preproc_elifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25013,12 +25448,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25046,10 +25481,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25088,22 +25523,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [56] = { + [57] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1513), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -25118,48 +25553,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_if_token2] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [aux_sym_preproc_else_token1] = ACTIONS(916), - [aux_sym_preproc_elif_token1] = ACTIONS(916), - [aux_sym_preproc_elifdef_token1] = ACTIONS(916), - [aux_sym_preproc_elifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [aux_sym_preproc_else_token1] = ACTIONS(1041), + [aux_sym_preproc_elif_token1] = ACTIONS(1041), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25174,12 +25609,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25207,10 +25642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25249,78 +25684,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1513), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [aux_sym_preproc_elifdef_token1] = ACTIONS(918), - [aux_sym_preproc_elifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [58] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1421), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1035), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25335,12 +25770,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25368,10 +25803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25410,237 +25845,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(58), - [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1513), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(58), - [sym_labeled_statement] = STATE(58), - [sym_expression_statement] = STATE(58), - [sym_if_statement] = STATE(58), - [sym_switch_statement] = STATE(58), - [sym_while_statement] = STATE(58), - [sym_do_statement] = STATE(58), - [sym_for_statement] = STATE(58), - [sym_return_statement] = STATE(58), - [sym_break_statement] = STATE(58), - [sym_continue_statement] = STATE(58), - [sym_goto_statement] = STATE(58), - [sym_seh_try_statement] = STATE(58), - [sym_seh_leave_statement] = STATE(58), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(920), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym___extension__] = ACTIONS(940), - [anon_sym_typedef] = ACTIONS(943), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(985), - [anon_sym_do] = ACTIONS(988), - [anon_sym_for] = ACTIONS(991), - [anon_sym_return] = ACTIONS(994), - [anon_sym_break] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_goto] = ACTIONS(1003), - [anon_sym___try] = ACTIONS(1006), - [anon_sym___leave] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, [59] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1520), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym_seh_try_statement] = STATE(62), - [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(62), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1426), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(63), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_if_token2] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [aux_sym_preproc_else_token1] = ACTIONS(916), - [aux_sym_preproc_elif_token1] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token2] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [aux_sym_preproc_else_token1] = ACTIONS(1037), + [aux_sym_preproc_elif_token1] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25655,12 +25929,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25688,10 +25962,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -25731,234 +26005,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1520), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(1047), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym___extension__] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym___try] = ACTIONS(1089), - [anon_sym___leave] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, - [61] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1520), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(60), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1426), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(63), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [aux_sym_preproc_else_token1] = ACTIONS(918), - [aux_sym_preproc_elif_token1] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [aux_sym_preproc_else_token1] = ACTIONS(1043), + [aux_sym_preproc_elif_token1] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25973,12 +26088,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26006,10 +26121,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(918), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26048,76 +26163,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1520), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym_seh_try_statement] = STATE(60), - [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(60), + [61] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1426), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym_seh_try_statement] = STATE(59), + [sym_seh_leave_statement] = STATE(59), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(59), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [aux_sym_preproc_else_token1] = ACTIONS(914), - [aux_sym_preproc_elif_token1] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [aux_sym_preproc_else_token1] = ACTIONS(1041), + [aux_sym_preproc_elif_token1] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26132,12 +26247,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26165,10 +26280,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26207,76 +26322,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1520), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(61), - [sym_labeled_statement] = STATE(61), - [sym_expression_statement] = STATE(61), - [sym_if_statement] = STATE(61), - [sym_switch_statement] = STATE(61), - [sym_while_statement] = STATE(61), - [sym_do_statement] = STATE(61), - [sym_for_statement] = STATE(61), - [sym_return_statement] = STATE(61), - [sym_break_statement] = STATE(61), - [sym_continue_statement] = STATE(61), - [sym_goto_statement] = STATE(61), - [sym_seh_try_statement] = STATE(61), - [sym_seh_leave_statement] = STATE(61), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(61), + [62] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1426), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(60), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [aux_sym_preproc_else_token1] = ACTIONS(912), - [aux_sym_preproc_elif_token1] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [aux_sym_preproc_else_token1] = ACTIONS(1039), + [aux_sym_preproc_elif_token1] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26291,12 +26406,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -26324,10 +26439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26366,545 +26481,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1514), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1095), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym___extension__] = ACTIONS(1101), - [anon_sym_typedef] = ACTIONS(1104), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1107), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1115), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_for] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1127), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1133), - [anon_sym_goto] = ACTIONS(1136), - [anon_sym___try] = ACTIONS(1139), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, - [65] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1166), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1187), - [anon_sym___leave] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), - [sym_comment] = ACTIONS(3), - }, - [66] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1519), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1193), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym___extension__] = ACTIONS(1199), - [anon_sym_typedef] = ACTIONS(1202), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1229), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym___try] = ACTIONS(1235), - [anon_sym___leave] = ACTIONS(1238), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), + [63] = { + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1426), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym_seh_try_statement] = STATE(63), + [sym_seh_leave_statement] = STATE(63), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [aux_sym_preproc_else_token1] = ACTIONS(913), + [aux_sym_preproc_elif_token1] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym___extension__] = ACTIONS(1053), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1065), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1077), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym___try] = ACTIONS(1089), + [anon_sym___leave] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1519), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_if_token2] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [64] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1422), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym_seh_try_statement] = STATE(68), + [sym_seh_leave_statement] = STATE(68), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token2] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26912,20 +26715,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26951,20 +26754,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(567), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26994,74 +26797,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1243), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [65] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27069,19 +26872,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1101), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -27109,10 +26912,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(916), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -27120,8 +26923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27151,73 +26954,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1514), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [66] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1422), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1107), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_if_token2] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1110), + [anon_sym___extension__] = ACTIONS(1113), + [anon_sym_typedef] = ACTIONS(1116), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1122), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1125), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_goto] = ACTIONS(1146), + [anon_sym___try] = ACTIONS(1149), + [anon_sym___leave] = ACTIONS(1152), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [67] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1422), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token2] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27225,21 +27186,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27265,20 +27225,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(567), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27308,74 +27268,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym_seh_try_statement] = STATE(65), - [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1255), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(918), - [aux_sym_preproc_def_token1] = ACTIONS(918), - [aux_sym_preproc_if_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(918), - [sym_preproc_directive] = ACTIONS(918), + [68] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1422), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token2] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27383,20 +27343,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(918), - [anon_sym___clrcall] = ACTIONS(918), - [anon_sym___stdcall] = ACTIONS(918), - [anon_sym___fastcall] = ACTIONS(918), - [anon_sym___thiscall] = ACTIONS(918), - [anon_sym___vectorcall] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27422,20 +27382,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(918), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(918), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(567), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27465,74 +27425,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1519), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym_seh_try_statement] = STATE(66), - [sym_seh_leave_statement] = STATE(66), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_if_token2] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [69] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1416), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1155), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym___extension__] = ACTIONS(1161), + [anon_sym_typedef] = ACTIONS(1164), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1172), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1175), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1178), + [anon_sym_do] = ACTIONS(1181), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym___try] = ACTIONS(1199), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1416), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1043), + [aux_sym_preproc_def_token1] = ACTIONS(1043), + [aux_sym_preproc_if_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), + [sym_preproc_directive] = ACTIONS(1043), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27540,20 +27656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1043), + [anon_sym___clrcall] = ACTIONS(1043), + [anon_sym___stdcall] = ACTIONS(1043), + [anon_sym___fastcall] = ACTIONS(1043), + [anon_sym___thiscall] = ACTIONS(1043), + [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1097), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27579,20 +27696,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27622,73 +27739,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1514), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(64), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [71] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1416), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym_seh_try_statement] = STATE(76), + [sym_seh_leave_statement] = STATE(76), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27703,14 +27820,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1207), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27737,10 +27854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), [anon_sym_while] = ACTIONS(511), [anon_sym_do] = ACTIONS(513), [anon_sym_for] = ACTIONS(515), @@ -27779,74 +27896,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym_seh_try_statement] = STATE(70), - [sym_seh_leave_statement] = STATE(70), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(70), - [ts_builtin_sym_end] = ACTIONS(1259), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [72] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1422), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token2] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27854,20 +27971,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym___extension__] = ACTIONS(559), + [anon_sym_typedef] = ACTIONS(561), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27893,20 +28010,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(567), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27936,22 +28053,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [74] = { + [73] = { [sym_declaration] = STATE(65), [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(65), [sym_labeled_statement] = STATE(65), [sym_expression_statement] = STATE(65), @@ -27966,44 +28083,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(65), [sym_seh_try_statement] = STATE(65), [sym_seh_leave_statement] = STATE(65), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(914), - [aux_sym_preproc_def_token1] = ACTIONS(914), - [aux_sym_preproc_if_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(914), - [sym_preproc_directive] = ACTIONS(914), + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28011,19 +28128,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1101), [anon_sym___extension__] = ACTIONS(27), [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(914), - [anon_sym___clrcall] = ACTIONS(914), - [anon_sym___stdcall] = ACTIONS(914), - [anon_sym___fastcall] = ACTIONS(914), - [anon_sym___thiscall] = ACTIONS(914), - [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -28051,10 +28168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(914), + [anon_sym_else] = ACTIONS(1039), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(914), - [anon_sym_default] = ACTIONS(914), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), [anon_sym_for] = ACTIONS(69), @@ -28062,8 +28179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28093,73 +28210,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1514), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [74] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28167,21 +28285,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28207,20 +28324,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28250,22 +28367,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [75] = { + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(75), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(75), + [sym_labeled_statement] = STATE(75), + [sym_expression_statement] = STATE(75), + [sym_if_statement] = STATE(75), + [sym_switch_statement] = STATE(75), + [sym_while_statement] = STATE(75), + [sym_do_statement] = STATE(75), + [sym_for_statement] = STATE(75), + [sym_return_statement] = STATE(75), + [sym_break_statement] = STATE(75), + [sym_continue_statement] = STATE(75), + [sym_goto_statement] = STATE(75), + [sym_seh_try_statement] = STATE(75), + [sym_seh_leave_statement] = STATE(75), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(1170), + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(913), + [aux_sym_preproc_def_token1] = ACTIONS(913), + [aux_sym_preproc_if_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(913), + [sym_preproc_directive] = ACTIONS(913), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1216), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym___cdecl] = ACTIONS(913), + [anon_sym___clrcall] = ACTIONS(913), + [anon_sym___stdcall] = ACTIONS(913), + [anon_sym___fastcall] = ACTIONS(913), + [anon_sym___thiscall] = ACTIONS(913), + [anon_sym___vectorcall] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym___try] = ACTIONS(1255), + [anon_sym___leave] = ACTIONS(1258), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, [76] = { [sym_declaration] = STATE(69), [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1514), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1416), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(69), [sym_labeled_statement] = STATE(69), [sym_expression_statement] = STATE(69), @@ -28280,43 +28554,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(69), [sym_seh_try_statement] = STATE(69), [sym_seh_leave_statement] = STATE(69), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1253), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1037), + [aux_sym_preproc_def_token1] = ACTIONS(1037), + [aux_sym_preproc_if_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), + [sym_preproc_directive] = ACTIONS(1037), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28331,14 +28605,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym___cdecl] = ACTIONS(1037), + [anon_sym___clrcall] = ACTIONS(1037), + [anon_sym___stdcall] = ACTIONS(1037), + [anon_sym___fastcall] = ACTIONS(1037), + [anon_sym___thiscall] = ACTIONS(1037), + [anon_sym___vectorcall] = ACTIONS(1037), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1211), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28365,10 +28639,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(912), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), [anon_sym_while] = ACTIONS(511), [anon_sym_do] = ACTIONS(513), [anon_sym_for] = ACTIONS(515), @@ -28408,73 +28682,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [77] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1519), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym_seh_try_statement] = STATE(71), - [sym_seh_leave_statement] = STATE(71), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(916), - [aux_sym_preproc_def_token1] = ACTIONS(916), - [aux_sym_preproc_if_token1] = ACTIONS(916), - [aux_sym_preproc_if_token2] = ACTIONS(916), - [aux_sym_preproc_ifdef_token1] = ACTIONS(916), - [aux_sym_preproc_ifdef_token2] = ACTIONS(916), - [sym_preproc_directive] = ACTIONS(916), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1416), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym_seh_try_statement] = STATE(70), + [sym_seh_leave_statement] = STATE(70), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1039), + [aux_sym_preproc_def_token1] = ACTIONS(1039), + [aux_sym_preproc_if_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), + [sym_preproc_directive] = ACTIONS(1039), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28482,20 +28755,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(916), - [anon_sym___clrcall] = ACTIONS(916), - [anon_sym___stdcall] = ACTIONS(916), - [anon_sym___fastcall] = ACTIONS(916), - [anon_sym___thiscall] = ACTIONS(916), - [anon_sym___vectorcall] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1039), + [anon_sym___clrcall] = ACTIONS(1039), + [anon_sym___stdcall] = ACTIONS(1039), + [anon_sym___fastcall] = ACTIONS(1039), + [anon_sym___thiscall] = ACTIONS(1039), + [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1209), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28521,20 +28795,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(916), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(916), - [anon_sym_default] = ACTIONS(916), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(1039), + [anon_sym_default] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28565,73 +28839,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [78] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1519), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1241), - [aux_sym_preproc_include_token1] = ACTIONS(912), - [aux_sym_preproc_def_token1] = ACTIONS(912), - [aux_sym_preproc_if_token1] = ACTIONS(912), - [aux_sym_preproc_if_token2] = ACTIONS(912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(912), - [sym_preproc_directive] = ACTIONS(912), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym_seh_try_statement] = STATE(74), + [sym_seh_leave_statement] = STATE(74), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(74), + [ts_builtin_sym_end] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1099), + [aux_sym_preproc_include_token1] = ACTIONS(1041), + [aux_sym_preproc_def_token1] = ACTIONS(1041), + [aux_sym_preproc_if_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), + [sym_preproc_directive] = ACTIONS(1041), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28639,20 +28913,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym___extension__] = ACTIONS(545), - [anon_sym_typedef] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(912), - [anon_sym___clrcall] = ACTIONS(912), - [anon_sym___stdcall] = ACTIONS(912), - [anon_sym___fastcall] = ACTIONS(912), - [anon_sym___thiscall] = ACTIONS(912), - [anon_sym___vectorcall] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym___cdecl] = ACTIONS(1041), + [anon_sym___clrcall] = ACTIONS(1041), + [anon_sym___stdcall] = ACTIONS(1041), + [anon_sym___fastcall] = ACTIONS(1041), + [anon_sym___thiscall] = ACTIONS(1041), + [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28678,20 +28952,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(553), - [anon_sym_else] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(912), - [anon_sym_default] = ACTIONS(912), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28722,66 +28996,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(81), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(79), [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_TILDE] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(924), + [anon_sym_SEMI] = ACTIONS(1158), + [anon_sym___extension__] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(936), + [anon_sym___attribute__] = ACTIONS(939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(942), + [anon_sym___declspec] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(951), + [anon_sym_unsigned] = ACTIONS(951), + [anon_sym_long] = ACTIONS(951), + [anon_sym_short] = ACTIONS(951), + [anon_sym_static] = ACTIONS(936), + [anon_sym_auto] = ACTIONS(936), + [anon_sym_register] = ACTIONS(936), + [anon_sym_inline] = ACTIONS(936), + [anon_sym___inline] = ACTIONS(936), + [anon_sym___inline__] = ACTIONS(936), + [anon_sym___forceinline] = ACTIONS(936), + [anon_sym_thread_local] = ACTIONS(936), + [anon_sym___thread] = ACTIONS(936), + [anon_sym_const] = ACTIONS(954), + [anon_sym_constexpr] = ACTIONS(954), + [anon_sym_volatile] = ACTIONS(954), + [anon_sym_restrict] = ACTIONS(954), + [anon_sym___restrict__] = ACTIONS(954), + [anon_sym__Atomic] = ACTIONS(954), + [anon_sym__Noreturn] = ACTIONS(954), + [anon_sym_noreturn] = ACTIONS(954), + [sym_primitive_type] = ACTIONS(957), + [anon_sym_enum] = ACTIONS(960), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_union] = ACTIONS(966), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym___try] = ACTIONS(1273), + [anon_sym___leave] = ACTIONS(1202), + [anon_sym_DASH_DASH] = ACTIONS(1002), + [anon_sym_PLUS_PLUS] = ACTIONS(1002), + [anon_sym_sizeof] = ACTIONS(1005), + [anon_sym___alignof__] = ACTIONS(1008), + [anon_sym___alignof] = ACTIONS(1008), + [anon_sym__alignof] = ACTIONS(1008), + [anon_sym_alignof] = ACTIONS(1008), + [anon_sym__Alignof] = ACTIONS(1008), + [anon_sym_offsetof] = ACTIONS(1011), + [anon_sym__Generic] = ACTIONS(1014), + [anon_sym_asm] = ACTIONS(1017), + [anon_sym___asm__] = ACTIONS(1017), + [sym_number_literal] = ACTIONS(1020), + [anon_sym_L_SQUOTE] = ACTIONS(1023), + [anon_sym_u_SQUOTE] = ACTIONS(1023), + [anon_sym_U_SQUOTE] = ACTIONS(1023), + [anon_sym_u8_SQUOTE] = ACTIONS(1023), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_L_DQUOTE] = ACTIONS(1026), + [anon_sym_u_DQUOTE] = ACTIONS(1026), + [anon_sym_U_DQUOTE] = ACTIONS(1026), + [anon_sym_u8_DQUOTE] = ACTIONS(1026), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_true] = ACTIONS(1029), + [sym_false] = ACTIONS(1029), + [anon_sym_NULL] = ACTIONS(1032), + [anon_sym_nullptr] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + }, + [80] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym_seh_try_statement] = STATE(79), + [sym_seh_leave_statement] = STATE(79), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28822,17 +29238,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(918), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1043), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28863,22 +29279,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [80] = { + [81] = { [sym_declaration] = STATE(83), [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(83), [sym_labeled_statement] = STATE(83), [sym_expression_statement] = STATE(83), @@ -28893,37 +29309,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(83), [sym_seh_try_statement] = STATE(83), [sym_seh_leave_statement] = STATE(83), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28964,17 +29380,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(916), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1041), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -29005,164 +29421,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1271), - [anon_sym_LPAREN2] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_TILDE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym___extension__] = ACTIONS(1151), - [anon_sym_typedef] = ACTIONS(1154), - [anon_sym_extern] = ACTIONS(946), - [anon_sym___attribute__] = ACTIONS(949), - [anon_sym_LBRACK_LBRACK] = ACTIONS(952), - [anon_sym___declspec] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_signed] = ACTIONS(961), - [anon_sym_unsigned] = ACTIONS(961), - [anon_sym_long] = ACTIONS(961), - [anon_sym_short] = ACTIONS(961), - [anon_sym_static] = ACTIONS(946), - [anon_sym_auto] = ACTIONS(946), - [anon_sym_register] = ACTIONS(946), - [anon_sym_inline] = ACTIONS(946), - [anon_sym___inline] = ACTIONS(946), - [anon_sym___inline__] = ACTIONS(946), - [anon_sym___forceinline] = ACTIONS(946), - [anon_sym_thread_local] = ACTIONS(946), - [anon_sym___thread] = ACTIONS(946), - [anon_sym_const] = ACTIONS(964), - [anon_sym_constexpr] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym___restrict__] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym__Noreturn] = ACTIONS(964), - [anon_sym_noreturn] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(967), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_union] = ACTIONS(976), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1169), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_goto] = ACTIONS(1184), - [anon_sym___try] = ACTIONS(1283), - [anon_sym___leave] = ACTIONS(1142), - [anon_sym_DASH_DASH] = ACTIONS(1012), - [anon_sym_PLUS_PLUS] = ACTIONS(1012), - [anon_sym_sizeof] = ACTIONS(1015), - [anon_sym___alignof__] = ACTIONS(1018), - [anon_sym___alignof] = ACTIONS(1018), - [anon_sym__alignof] = ACTIONS(1018), - [anon_sym_alignof] = ACTIONS(1018), - [anon_sym__Alignof] = ACTIONS(1018), - [anon_sym_offsetof] = ACTIONS(1021), - [anon_sym__Generic] = ACTIONS(1024), - [anon_sym_asm] = ACTIONS(1027), - [anon_sym___asm__] = ACTIONS(1027), - [sym_number_literal] = ACTIONS(1030), - [anon_sym_L_SQUOTE] = ACTIONS(1033), - [anon_sym_u_SQUOTE] = ACTIONS(1033), - [anon_sym_U_SQUOTE] = ACTIONS(1033), - [anon_sym_u8_SQUOTE] = ACTIONS(1033), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_L_DQUOTE] = ACTIONS(1036), - [anon_sym_u_DQUOTE] = ACTIONS(1036), - [anon_sym_U_DQUOTE] = ACTIONS(1036), - [anon_sym_u8_DQUOTE] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym_true] = ACTIONS(1039), - [sym_false] = ACTIONS(1039), - [anon_sym_NULL] = ACTIONS(1042), - [anon_sym_nullptr] = ACTIONS(1042), + [82] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym_seh_try_statement] = STATE(80), + [sym_seh_leave_statement] = STATE(80), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [82] = { + [83] = { [sym_declaration] = STATE(79), [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1429), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(562), + [sym_ms_declspec_modifier] = STATE(932), [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), [sym_attributed_statement] = STATE(79), [sym_labeled_statement] = STATE(79), [sym_expression_statement] = STATE(79), @@ -29177,37 +29593,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(79), [sym_seh_try_statement] = STATE(79), [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29248,17 +29664,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(912), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1037), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -29289,67 +29705,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1523), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(530), - [sym_ms_declspec_modifier] = STATE(893), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1261), + [84] = { + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2301), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29357,136 +29756,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(914), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [84] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2257), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -29543,48 +29817,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2202), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2265), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29654,48 +29928,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2176), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2231), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29765,48 +30039,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2122), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2144), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29876,48 +30150,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2276), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2290), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29987,48 +30261,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(587), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1518), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__for_statement_body] = STATE(2058), - [sym__expression] = STATE(1254), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2039), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1425), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__for_statement_body] = STATE(2319), + [sym__expression] = STATE(1341), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2269), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -30098,7 +30372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(115), + [sym_else_clause] = STATE(131), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -30507,3678 +30781,3474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [94] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, [95] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, [96] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [anon_sym_COMMA] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___except] = ACTIONS(1320), + [anon_sym___finally] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___except] = ACTIONS(1312), - [anon_sym___finally] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [98] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [98] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, [99] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [103] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [103] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, [105] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, [106] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [107] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_RPAREN] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___except] = ACTIONS(1356), + [anon_sym___finally] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [111] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [111] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, [112] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, [113] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, [114] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [115] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, [116] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1350), - [anon_sym_RPAREN] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___except] = ACTIONS(1352), - [anon_sym___finally] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, [119] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [120] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [121] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [122] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [123] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [124] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [125] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [126] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [127] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - }, - [130] = { [sym_identifier] = ACTIONS(1382), [aux_sym_preproc_include_token1] = ACTIONS(1382), [aux_sym_preproc_def_token1] = ACTIONS(1382), @@ -34280,7 +34350,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [131] = { + [129] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [130] = { [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), [aux_sym_preproc_def_token1] = ACTIONS(1386), @@ -34382,7 +34554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [132] = { + [131] = { [sym_identifier] = ACTIONS(1390), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1390), @@ -34484,7 +34656,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, + [132] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, [133] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [134] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), @@ -34586,7 +34962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [134] = { + [135] = { [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), [aux_sym_preproc_def_token1] = ACTIONS(1398), @@ -34688,7 +35064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [135] = { + [136] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), [aux_sym_preproc_def_token1] = ACTIONS(1402), @@ -34790,7 +35166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [136] = { + [137] = { [sym_identifier] = ACTIONS(1406), [aux_sym_preproc_include_token1] = ACTIONS(1406), [aux_sym_preproc_def_token1] = ACTIONS(1406), @@ -34892,7 +35268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [137] = { + [138] = { [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), @@ -34994,109 +35370,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [139] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [139] = { + [140] = { [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), @@ -35156,6 +35532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1414), [anon_sym_union] = ACTIONS(1414), [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), [anon_sym_switch] = ACTIONS(1414), [anon_sym_case] = ACTIONS(1414), [anon_sym_default] = ACTIONS(1414), @@ -35197,7 +35574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [140] = { + [141] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -35257,6 +35634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1418), [anon_sym_union] = ACTIONS(1418), [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), [anon_sym_switch] = ACTIONS(1418), [anon_sym_case] = ACTIONS(1418), [anon_sym_default] = ACTIONS(1418), @@ -35298,7 +35676,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [141] = { + [142] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [143] = { [sym_identifier] = ACTIONS(1422), [aux_sym_preproc_include_token1] = ACTIONS(1422), [aux_sym_preproc_def_token1] = ACTIONS(1422), @@ -35399,7 +35879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [142] = { + [144] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -35500,7 +35980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [143] = { + [145] = { [sym_identifier] = ACTIONS(1430), [aux_sym_preproc_include_token1] = ACTIONS(1430), [aux_sym_preproc_def_token1] = ACTIONS(1430), @@ -35601,7 +36081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [144] = { + [146] = { [sym_identifier] = ACTIONS(1434), [aux_sym_preproc_include_token1] = ACTIONS(1434), [aux_sym_preproc_def_token1] = ACTIONS(1434), @@ -35702,7 +36182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [145] = { + [147] = { [sym_identifier] = ACTIONS(1438), [aux_sym_preproc_include_token1] = ACTIONS(1438), [aux_sym_preproc_def_token1] = ACTIONS(1438), @@ -35803,7 +36283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [146] = { + [148] = { [sym_identifier] = ACTIONS(1442), [aux_sym_preproc_include_token1] = ACTIONS(1442), [aux_sym_preproc_def_token1] = ACTIONS(1442), @@ -35904,7 +36384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [147] = { + [149] = { [sym_identifier] = ACTIONS(1446), [aux_sym_preproc_include_token1] = ACTIONS(1446), [aux_sym_preproc_def_token1] = ACTIONS(1446), @@ -36005,7 +36485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [148] = { + [150] = { [sym_identifier] = ACTIONS(1450), [aux_sym_preproc_include_token1] = ACTIONS(1450), [aux_sym_preproc_def_token1] = ACTIONS(1450), @@ -36106,7 +36586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [149] = { + [151] = { [sym_identifier] = ACTIONS(1454), [aux_sym_preproc_include_token1] = ACTIONS(1454), [aux_sym_preproc_def_token1] = ACTIONS(1454), @@ -36207,7 +36687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [150] = { + [152] = { [sym_identifier] = ACTIONS(1458), [aux_sym_preproc_include_token1] = ACTIONS(1458), [aux_sym_preproc_def_token1] = ACTIONS(1458), @@ -36308,7 +36788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [151] = { + [153] = { [sym_identifier] = ACTIONS(1462), [aux_sym_preproc_include_token1] = ACTIONS(1462), [aux_sym_preproc_def_token1] = ACTIONS(1462), @@ -36409,7 +36889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [152] = { + [154] = { [sym_identifier] = ACTIONS(1466), [aux_sym_preproc_include_token1] = ACTIONS(1466), [aux_sym_preproc_def_token1] = ACTIONS(1466), @@ -36510,7 +36990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [153] = { + [155] = { [sym_identifier] = ACTIONS(1470), [aux_sym_preproc_include_token1] = ACTIONS(1470), [aux_sym_preproc_def_token1] = ACTIONS(1470), @@ -36611,7 +37091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [154] = { + [156] = { [sym_identifier] = ACTIONS(1474), [aux_sym_preproc_include_token1] = ACTIONS(1474), [aux_sym_preproc_def_token1] = ACTIONS(1474), @@ -36712,7 +37192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [155] = { + [157] = { [sym_identifier] = ACTIONS(1478), [aux_sym_preproc_include_token1] = ACTIONS(1478), [aux_sym_preproc_def_token1] = ACTIONS(1478), @@ -36813,7 +37293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, - [156] = { + [158] = { [sym_identifier] = ACTIONS(1482), [aux_sym_preproc_include_token1] = ACTIONS(1482), [aux_sym_preproc_def_token1] = ACTIONS(1482), @@ -36914,7 +37394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(3), }, - [157] = { + [159] = { [sym_identifier] = ACTIONS(1486), [aux_sym_preproc_include_token1] = ACTIONS(1486), [aux_sym_preproc_def_token1] = ACTIONS(1486), @@ -37015,8 +37495,1119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1486), [sym_comment] = ACTIONS(3), }, - [158] = { - [sym_else_clause] = STATE(196), + [160] = { + [sym_identifier] = ACTIONS(1490), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [aux_sym_preproc_else_token1] = ACTIONS(1490), + [aux_sym_preproc_elif_token1] = ACTIONS(1490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + }, + [161] = { + [sym_identifier] = ACTIONS(1494), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [aux_sym_preproc_else_token1] = ACTIONS(1494), + [aux_sym_preproc_elif_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [162] = { + [sym_identifier] = ACTIONS(1498), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [aux_sym_preproc_else_token1] = ACTIONS(1498), + [aux_sym_preproc_elif_token1] = ACTIONS(1498), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + }, + [163] = { + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_else_token1] = ACTIONS(1502), + [aux_sym_preproc_elif_token1] = ACTIONS(1502), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1504), + [anon_sym_u_SQUOTE] = ACTIONS(1504), + [anon_sym_U_SQUOTE] = ACTIONS(1504), + [anon_sym_u8_SQUOTE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_L_DQUOTE] = ACTIONS(1504), + [anon_sym_u_DQUOTE] = ACTIONS(1504), + [anon_sym_U_DQUOTE] = ACTIONS(1504), + [anon_sym_u8_DQUOTE] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [164] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [aux_sym_preproc_else_token1] = ACTIONS(1506), + [aux_sym_preproc_elif_token1] = ACTIONS(1506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym___try] = ACTIONS(1506), + [anon_sym___leave] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + }, + [165] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [aux_sym_preproc_else_token1] = ACTIONS(1510), + [aux_sym_preproc_elif_token1] = ACTIONS(1510), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym___try] = ACTIONS(1510), + [anon_sym___leave] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + }, + [166] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [aux_sym_preproc_else_token1] = ACTIONS(1514), + [aux_sym_preproc_elif_token1] = ACTIONS(1514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym___try] = ACTIONS(1514), + [anon_sym___leave] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + }, + [167] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym___try] = ACTIONS(1518), + [anon_sym___leave] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [168] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym___try] = ACTIONS(1522), + [anon_sym___leave] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [169] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [aux_sym_preproc_else_token1] = ACTIONS(1526), + [aux_sym_preproc_elif_token1] = ACTIONS(1526), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym___try] = ACTIONS(1526), + [anon_sym___leave] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [aux_sym_preproc_else_token1] = ACTIONS(1530), + [aux_sym_preproc_elif_token1] = ACTIONS(1530), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym___try] = ACTIONS(1530), + [anon_sym___leave] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_else_clause] = STATE(203), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -37074,7 +38665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1490), + [anon_sym_else] = ACTIONS(1534), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -37116,714 +38707,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [159] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [sym_identifier] = ACTIONS(1508), - [aux_sym_preproc_include_token1] = ACTIONS(1508), - [aux_sym_preproc_def_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token2] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), - [aux_sym_preproc_else_token1] = ACTIONS(1508), - [aux_sym_preproc_elif_token1] = ACTIONS(1508), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), - [sym_preproc_directive] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___extension__] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym___attribute__] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), - [anon_sym___declspec] = ACTIONS(1508), - [anon_sym___cdecl] = ACTIONS(1508), - [anon_sym___clrcall] = ACTIONS(1508), - [anon_sym___stdcall] = ACTIONS(1508), - [anon_sym___fastcall] = ACTIONS(1508), - [anon_sym___thiscall] = ACTIONS(1508), - [anon_sym___vectorcall] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1508), - [anon_sym_unsigned] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_auto] = ACTIONS(1508), - [anon_sym_register] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym___inline] = ACTIONS(1508), - [anon_sym___inline__] = ACTIONS(1508), - [anon_sym___forceinline] = ACTIONS(1508), - [anon_sym_thread_local] = ACTIONS(1508), - [anon_sym___thread] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_constexpr] = ACTIONS(1508), - [anon_sym_volatile] = ACTIONS(1508), - [anon_sym_restrict] = ACTIONS(1508), - [anon_sym___restrict__] = ACTIONS(1508), - [anon_sym__Atomic] = ACTIONS(1508), - [anon_sym__Noreturn] = ACTIONS(1508), - [anon_sym_noreturn] = ACTIONS(1508), - [sym_primitive_type] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_goto] = ACTIONS(1508), - [anon_sym___try] = ACTIONS(1508), - [anon_sym___leave] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1508), - [anon_sym___alignof__] = ACTIONS(1508), - [anon_sym___alignof] = ACTIONS(1508), - [anon_sym__alignof] = ACTIONS(1508), - [anon_sym_alignof] = ACTIONS(1508), - [anon_sym__Alignof] = ACTIONS(1508), - [anon_sym_offsetof] = ACTIONS(1508), - [anon_sym__Generic] = ACTIONS(1508), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym___asm__] = ACTIONS(1508), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1510), - [anon_sym_u_SQUOTE] = ACTIONS(1510), - [anon_sym_U_SQUOTE] = ACTIONS(1510), - [anon_sym_u8_SQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_L_DQUOTE] = ACTIONS(1510), - [anon_sym_u_DQUOTE] = ACTIONS(1510), - [anon_sym_U_DQUOTE] = ACTIONS(1510), - [anon_sym_u8_DQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [anon_sym_NULL] = ACTIONS(1508), - [anon_sym_nullptr] = ACTIONS(1508), + [172] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [164] = { - [sym_identifier] = ACTIONS(1512), - [aux_sym_preproc_include_token1] = ACTIONS(1512), - [aux_sym_preproc_def_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1512), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), - [sym_preproc_directive] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym___extension__] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), - [anon_sym___declspec] = ACTIONS(1512), - [anon_sym___cdecl] = ACTIONS(1512), - [anon_sym___clrcall] = ACTIONS(1512), - [anon_sym___stdcall] = ACTIONS(1512), - [anon_sym___fastcall] = ACTIONS(1512), - [anon_sym___thiscall] = ACTIONS(1512), - [anon_sym___vectorcall] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1512), - [anon_sym_unsigned] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_auto] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym___inline] = ACTIONS(1512), - [anon_sym___inline__] = ACTIONS(1512), - [anon_sym___forceinline] = ACTIONS(1512), - [anon_sym_thread_local] = ACTIONS(1512), - [anon_sym___thread] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_constexpr] = ACTIONS(1512), - [anon_sym_volatile] = ACTIONS(1512), - [anon_sym_restrict] = ACTIONS(1512), - [anon_sym___restrict__] = ACTIONS(1512), - [anon_sym__Atomic] = ACTIONS(1512), - [anon_sym__Noreturn] = ACTIONS(1512), - [anon_sym_noreturn] = ACTIONS(1512), - [sym_primitive_type] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_goto] = ACTIONS(1512), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1512), - [anon_sym___alignof__] = ACTIONS(1512), - [anon_sym___alignof] = ACTIONS(1512), - [anon_sym__alignof] = ACTIONS(1512), - [anon_sym_alignof] = ACTIONS(1512), - [anon_sym__Alignof] = ACTIONS(1512), - [anon_sym_offsetof] = ACTIONS(1512), - [anon_sym__Generic] = ACTIONS(1512), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym___asm__] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1514), - [anon_sym_L_SQUOTE] = ACTIONS(1514), - [anon_sym_u_SQUOTE] = ACTIONS(1514), - [anon_sym_U_SQUOTE] = ACTIONS(1514), - [anon_sym_u8_SQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1512), - [sym_false] = ACTIONS(1512), - [anon_sym_NULL] = ACTIONS(1512), - [anon_sym_nullptr] = ACTIONS(1512), + [173] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [165] = { - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1516), - [aux_sym_preproc_def_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), - [sym_preproc_directive] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym___extension__] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), - [anon_sym___declspec] = ACTIONS(1516), - [anon_sym___cdecl] = ACTIONS(1516), - [anon_sym___clrcall] = ACTIONS(1516), - [anon_sym___stdcall] = ACTIONS(1516), - [anon_sym___fastcall] = ACTIONS(1516), - [anon_sym___thiscall] = ACTIONS(1516), - [anon_sym___vectorcall] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1516), - [anon_sym_unsigned] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_auto] = ACTIONS(1516), - [anon_sym_register] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym___inline] = ACTIONS(1516), - [anon_sym___inline__] = ACTIONS(1516), - [anon_sym___forceinline] = ACTIONS(1516), - [anon_sym_thread_local] = ACTIONS(1516), - [anon_sym___thread] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_constexpr] = ACTIONS(1516), - [anon_sym_volatile] = ACTIONS(1516), - [anon_sym_restrict] = ACTIONS(1516), - [anon_sym___restrict__] = ACTIONS(1516), - [anon_sym__Atomic] = ACTIONS(1516), - [anon_sym__Noreturn] = ACTIONS(1516), - [anon_sym_noreturn] = ACTIONS(1516), - [sym_primitive_type] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_goto] = ACTIONS(1516), - [anon_sym___try] = ACTIONS(1516), - [anon_sym___leave] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym___alignof__] = ACTIONS(1516), - [anon_sym___alignof] = ACTIONS(1516), - [anon_sym__alignof] = ACTIONS(1516), - [anon_sym_alignof] = ACTIONS(1516), - [anon_sym__Alignof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1516), - [anon_sym__Generic] = ACTIONS(1516), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym___asm__] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1518), - [anon_sym_L_SQUOTE] = ACTIONS(1518), - [anon_sym_u_SQUOTE] = ACTIONS(1518), - [anon_sym_U_SQUOTE] = ACTIONS(1518), - [anon_sym_u8_SQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [174] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [166] = { + [175] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -37923,907 +39107,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [167] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [176] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [168] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [177] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [aux_sym_preproc_else_token1] = ACTIONS(1298), + [aux_sym_preproc_elif_token1] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [169] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [178] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [170] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [179] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [171] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), - [sym_comment] = ACTIONS(3), - }, - [176] = { + [180] = { [sym_identifier] = ACTIONS(1362), [aux_sym_preproc_include_token1] = ACTIONS(1362), [aux_sym_preproc_def_token1] = ACTIONS(1362), @@ -38923,7464 +39607,1616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [177] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [181] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [179] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [182] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [180] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [183] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [181] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [184] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [182] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [aux_sym_preproc_else_token1] = ACTIONS(1302), - [aux_sym_preproc_elif_token1] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [185] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [183] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [186] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [187] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, [188] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [204] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [aux_sym_preproc_else_token1] = ACTIONS(1306), - [aux_sym_preproc_elif_token1] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [aux_sym_preproc_else_token1] = ACTIONS(1500), - [aux_sym_preproc_elif_token1] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [aux_sym_preproc_else_token1] = ACTIONS(1504), - [aux_sym_preproc_elif_token1] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1512), - [aux_sym_preproc_include_token1] = ACTIONS(1512), - [aux_sym_preproc_def_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1512), - [sym_preproc_directive] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym___extension__] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), - [anon_sym___declspec] = ACTIONS(1512), - [anon_sym___cdecl] = ACTIONS(1512), - [anon_sym___clrcall] = ACTIONS(1512), - [anon_sym___stdcall] = ACTIONS(1512), - [anon_sym___fastcall] = ACTIONS(1512), - [anon_sym___thiscall] = ACTIONS(1512), - [anon_sym___vectorcall] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1512), - [anon_sym_unsigned] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_auto] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym___inline] = ACTIONS(1512), - [anon_sym___inline__] = ACTIONS(1512), - [anon_sym___forceinline] = ACTIONS(1512), - [anon_sym_thread_local] = ACTIONS(1512), - [anon_sym___thread] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_constexpr] = ACTIONS(1512), - [anon_sym_volatile] = ACTIONS(1512), - [anon_sym_restrict] = ACTIONS(1512), - [anon_sym___restrict__] = ACTIONS(1512), - [anon_sym__Atomic] = ACTIONS(1512), - [anon_sym__Noreturn] = ACTIONS(1512), - [anon_sym_noreturn] = ACTIONS(1512), - [sym_primitive_type] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_goto] = ACTIONS(1512), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1512), - [anon_sym___alignof__] = ACTIONS(1512), - [anon_sym___alignof] = ACTIONS(1512), - [anon_sym__alignof] = ACTIONS(1512), - [anon_sym_alignof] = ACTIONS(1512), - [anon_sym__Alignof] = ACTIONS(1512), - [anon_sym_offsetof] = ACTIONS(1512), - [anon_sym__Generic] = ACTIONS(1512), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym___asm__] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1514), - [anon_sym_L_SQUOTE] = ACTIONS(1514), - [anon_sym_u_SQUOTE] = ACTIONS(1514), - [anon_sym_U_SQUOTE] = ACTIONS(1514), - [anon_sym_u8_SQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1512), - [sym_false] = ACTIONS(1512), - [anon_sym_NULL] = ACTIONS(1512), - [anon_sym_nullptr] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1508), - [aux_sym_preproc_include_token1] = ACTIONS(1508), - [aux_sym_preproc_def_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token2] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), - [aux_sym_preproc_else_token1] = ACTIONS(1508), - [aux_sym_preproc_elif_token1] = ACTIONS(1508), - [sym_preproc_directive] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___extension__] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym___attribute__] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), - [anon_sym___declspec] = ACTIONS(1508), - [anon_sym___cdecl] = ACTIONS(1508), - [anon_sym___clrcall] = ACTIONS(1508), - [anon_sym___stdcall] = ACTIONS(1508), - [anon_sym___fastcall] = ACTIONS(1508), - [anon_sym___thiscall] = ACTIONS(1508), - [anon_sym___vectorcall] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1508), - [anon_sym_unsigned] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_auto] = ACTIONS(1508), - [anon_sym_register] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym___inline] = ACTIONS(1508), - [anon_sym___inline__] = ACTIONS(1508), - [anon_sym___forceinline] = ACTIONS(1508), - [anon_sym_thread_local] = ACTIONS(1508), - [anon_sym___thread] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_constexpr] = ACTIONS(1508), - [anon_sym_volatile] = ACTIONS(1508), - [anon_sym_restrict] = ACTIONS(1508), - [anon_sym___restrict__] = ACTIONS(1508), - [anon_sym__Atomic] = ACTIONS(1508), - [anon_sym__Noreturn] = ACTIONS(1508), - [anon_sym_noreturn] = ACTIONS(1508), - [sym_primitive_type] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_goto] = ACTIONS(1508), - [anon_sym___try] = ACTIONS(1508), - [anon_sym___leave] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1508), - [anon_sym___alignof__] = ACTIONS(1508), - [anon_sym___alignof] = ACTIONS(1508), - [anon_sym__alignof] = ACTIONS(1508), - [anon_sym_alignof] = ACTIONS(1508), - [anon_sym__Alignof] = ACTIONS(1508), - [anon_sym_offsetof] = ACTIONS(1508), - [anon_sym__Generic] = ACTIONS(1508), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym___asm__] = ACTIONS(1508), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1510), - [anon_sym_u_SQUOTE] = ACTIONS(1510), - [anon_sym_U_SQUOTE] = ACTIONS(1510), - [anon_sym_u8_SQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_L_DQUOTE] = ACTIONS(1510), - [anon_sym_u_DQUOTE] = ACTIONS(1510), - [anon_sym_U_DQUOTE] = ACTIONS(1510), - [anon_sym_u8_DQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [anon_sym_NULL] = ACTIONS(1508), - [anon_sym_nullptr] = ACTIONS(1508), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [aux_sym_preproc_else_token1] = ACTIONS(1454), - [aux_sym_preproc_elif_token1] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token2] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [aux_sym_preproc_else_token1] = ACTIONS(1466), - [aux_sym_preproc_elif_token1] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym___extension__] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), - [anon_sym___declspec] = ACTIONS(1466), - [anon_sym___cdecl] = ACTIONS(1466), - [anon_sym___clrcall] = ACTIONS(1466), - [anon_sym___stdcall] = ACTIONS(1466), - [anon_sym___fastcall] = ACTIONS(1466), - [anon_sym___thiscall] = ACTIONS(1466), - [anon_sym___vectorcall] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_signed] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym___inline] = ACTIONS(1466), - [anon_sym___inline__] = ACTIONS(1466), - [anon_sym___forceinline] = ACTIONS(1466), - [anon_sym_thread_local] = ACTIONS(1466), - [anon_sym___thread] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_constexpr] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [anon_sym___restrict__] = ACTIONS(1466), - [anon_sym__Atomic] = ACTIONS(1466), - [anon_sym__Noreturn] = ACTIONS(1466), - [anon_sym_noreturn] = ACTIONS(1466), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym___try] = ACTIONS(1466), - [anon_sym___leave] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1466), - [anon_sym__Generic] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1466), - [anon_sym___asm__] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym_u_SQUOTE] = ACTIONS(1468), - [anon_sym_U_SQUOTE] = ACTIONS(1468), - [anon_sym_u8_SQUOTE] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_u_DQUOTE] = ACTIONS(1468), - [anon_sym_U_DQUOTE] = ACTIONS(1468), - [anon_sym_u8_DQUOTE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_NULL] = ACTIONS(1466), - [anon_sym_nullptr] = ACTIONS(1466), - [sym_comment] = ACTIONS(3), - }, - [220] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1470), - [aux_sym_preproc_def_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token2] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), - [aux_sym_preproc_else_token1] = ACTIONS(1470), - [aux_sym_preproc_elif_token1] = ACTIONS(1470), - [sym_preproc_directive] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym___extension__] = ACTIONS(1470), - [anon_sym_typedef] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym___attribute__] = ACTIONS(1470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), - [anon_sym___declspec] = ACTIONS(1470), - [anon_sym___cdecl] = ACTIONS(1470), - [anon_sym___clrcall] = ACTIONS(1470), - [anon_sym___stdcall] = ACTIONS(1470), - [anon_sym___fastcall] = ACTIONS(1470), - [anon_sym___thiscall] = ACTIONS(1470), - [anon_sym___vectorcall] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_signed] = ACTIONS(1470), - [anon_sym_unsigned] = ACTIONS(1470), - [anon_sym_long] = ACTIONS(1470), - [anon_sym_short] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_auto] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_inline] = ACTIONS(1470), - [anon_sym___inline] = ACTIONS(1470), - [anon_sym___inline__] = ACTIONS(1470), - [anon_sym___forceinline] = ACTIONS(1470), - [anon_sym_thread_local] = ACTIONS(1470), - [anon_sym___thread] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_constexpr] = ACTIONS(1470), - [anon_sym_volatile] = ACTIONS(1470), - [anon_sym_restrict] = ACTIONS(1470), - [anon_sym___restrict__] = ACTIONS(1470), - [anon_sym__Atomic] = ACTIONS(1470), - [anon_sym__Noreturn] = ACTIONS(1470), - [anon_sym_noreturn] = ACTIONS(1470), - [sym_primitive_type] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_goto] = ACTIONS(1470), - [anon_sym___try] = ACTIONS(1470), - [anon_sym___leave] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_sizeof] = ACTIONS(1470), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1470), - [anon_sym__Generic] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1470), - [anon_sym___asm__] = ACTIONS(1470), - [sym_number_literal] = ACTIONS(1472), - [anon_sym_L_SQUOTE] = ACTIONS(1472), - [anon_sym_u_SQUOTE] = ACTIONS(1472), - [anon_sym_U_SQUOTE] = ACTIONS(1472), - [anon_sym_u8_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_L_DQUOTE] = ACTIONS(1472), - [anon_sym_u_DQUOTE] = ACTIONS(1472), - [anon_sym_U_DQUOTE] = ACTIONS(1472), - [anon_sym_u8_DQUOTE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [anon_sym_NULL] = ACTIONS(1470), - [anon_sym_nullptr] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [aux_sym_preproc_else_token1] = ACTIONS(1450), - [aux_sym_preproc_elif_token1] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1482), - [aux_sym_preproc_include_token1] = ACTIONS(1482), - [aux_sym_preproc_def_token1] = ACTIONS(1482), - [aux_sym_preproc_if_token1] = ACTIONS(1482), - [aux_sym_preproc_if_token2] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), - [aux_sym_preproc_else_token1] = ACTIONS(1482), - [aux_sym_preproc_elif_token1] = ACTIONS(1482), - [sym_preproc_directive] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym___extension__] = ACTIONS(1482), - [anon_sym_typedef] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym___attribute__] = ACTIONS(1482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym___declspec] = ACTIONS(1482), - [anon_sym___cdecl] = ACTIONS(1482), - [anon_sym___clrcall] = ACTIONS(1482), - [anon_sym___stdcall] = ACTIONS(1482), - [anon_sym___fastcall] = ACTIONS(1482), - [anon_sym___thiscall] = ACTIONS(1482), - [anon_sym___vectorcall] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym___inline] = ACTIONS(1482), - [anon_sym___inline__] = ACTIONS(1482), - [anon_sym___forceinline] = ACTIONS(1482), - [anon_sym_thread_local] = ACTIONS(1482), - [anon_sym___thread] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_constexpr] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_restrict] = ACTIONS(1482), - [anon_sym___restrict__] = ACTIONS(1482), - [anon_sym__Atomic] = ACTIONS(1482), - [anon_sym__Noreturn] = ACTIONS(1482), - [anon_sym_noreturn] = ACTIONS(1482), - [sym_primitive_type] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_goto] = ACTIONS(1482), - [anon_sym___try] = ACTIONS(1482), - [anon_sym___leave] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_sizeof] = ACTIONS(1482), - [anon_sym___alignof__] = ACTIONS(1482), - [anon_sym___alignof] = ACTIONS(1482), - [anon_sym__alignof] = ACTIONS(1482), - [anon_sym_alignof] = ACTIONS(1482), - [anon_sym__Alignof] = ACTIONS(1482), - [anon_sym_offsetof] = ACTIONS(1482), - [anon_sym__Generic] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1482), - [anon_sym___asm__] = ACTIONS(1482), - [sym_number_literal] = ACTIONS(1484), - [anon_sym_L_SQUOTE] = ACTIONS(1484), - [anon_sym_u_SQUOTE] = ACTIONS(1484), - [anon_sym_U_SQUOTE] = ACTIONS(1484), - [anon_sym_u8_SQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [anon_sym_NULL] = ACTIONS(1482), - [anon_sym_nullptr] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token2] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [aux_sym_preproc_else_token1] = ACTIONS(1458), - [aux_sym_preproc_elif_token1] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - }, - [227] = { - [sym__expression] = STATE(868), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(867), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1530), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym__expression] = STATE(868), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1532), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1538), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [sym_else_clause] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [230] = { - [sym_else_clause] = STATE(244), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [aux_sym_preproc_else_token1] = ACTIONS(1434), - [aux_sym_preproc_elif_token1] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(1474), - [aux_sym_preproc_include_token1] = ACTIONS(1474), - [aux_sym_preproc_def_token1] = ACTIONS(1474), - [aux_sym_preproc_if_token1] = ACTIONS(1474), - [aux_sym_preproc_if_token2] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), - [aux_sym_preproc_else_token1] = ACTIONS(1474), - [aux_sym_preproc_elif_token1] = ACTIONS(1474), - [sym_preproc_directive] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym___extension__] = ACTIONS(1474), - [anon_sym_typedef] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym___attribute__] = ACTIONS(1474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), - [anon_sym___declspec] = ACTIONS(1474), - [anon_sym___cdecl] = ACTIONS(1474), - [anon_sym___clrcall] = ACTIONS(1474), - [anon_sym___stdcall] = ACTIONS(1474), - [anon_sym___fastcall] = ACTIONS(1474), - [anon_sym___thiscall] = ACTIONS(1474), - [anon_sym___vectorcall] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_signed] = ACTIONS(1474), - [anon_sym_unsigned] = ACTIONS(1474), - [anon_sym_long] = ACTIONS(1474), - [anon_sym_short] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_auto] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym___inline] = ACTIONS(1474), - [anon_sym___inline__] = ACTIONS(1474), - [anon_sym___forceinline] = ACTIONS(1474), - [anon_sym_thread_local] = ACTIONS(1474), - [anon_sym___thread] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_constexpr] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym___restrict__] = ACTIONS(1474), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym__Noreturn] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [sym_primitive_type] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1474), - [anon_sym_case] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_goto] = ACTIONS(1474), - [anon_sym___try] = ACTIONS(1474), - [anon_sym___leave] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_sizeof] = ACTIONS(1474), - [anon_sym___alignof__] = ACTIONS(1474), - [anon_sym___alignof] = ACTIONS(1474), - [anon_sym__alignof] = ACTIONS(1474), - [anon_sym_alignof] = ACTIONS(1474), - [anon_sym__Alignof] = ACTIONS(1474), - [anon_sym_offsetof] = ACTIONS(1474), - [anon_sym__Generic] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1474), - [anon_sym___asm__] = ACTIONS(1474), - [sym_number_literal] = ACTIONS(1476), - [anon_sym_L_SQUOTE] = ACTIONS(1476), - [anon_sym_u_SQUOTE] = ACTIONS(1476), - [anon_sym_U_SQUOTE] = ACTIONS(1476), - [anon_sym_u8_SQUOTE] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_L_DQUOTE] = ACTIONS(1476), - [anon_sym_u_DQUOTE] = ACTIONS(1476), - [anon_sym_U_DQUOTE] = ACTIONS(1476), - [anon_sym_u8_DQUOTE] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym_true] = ACTIONS(1474), - [sym_false] = ACTIONS(1474), - [anon_sym_NULL] = ACTIONS(1474), - [anon_sym_nullptr] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token2] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [aux_sym_preproc_else_token1] = ACTIONS(1438), - [aux_sym_preproc_elif_token1] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), - [sym_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1516), - [aux_sym_preproc_def_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), - [aux_sym_preproc_else_token1] = ACTIONS(1516), - [aux_sym_preproc_elif_token1] = ACTIONS(1516), - [sym_preproc_directive] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym___extension__] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), - [anon_sym___declspec] = ACTIONS(1516), - [anon_sym___cdecl] = ACTIONS(1516), - [anon_sym___clrcall] = ACTIONS(1516), - [anon_sym___stdcall] = ACTIONS(1516), - [anon_sym___fastcall] = ACTIONS(1516), - [anon_sym___thiscall] = ACTIONS(1516), - [anon_sym___vectorcall] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1516), - [anon_sym_unsigned] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_auto] = ACTIONS(1516), - [anon_sym_register] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym___inline] = ACTIONS(1516), - [anon_sym___inline__] = ACTIONS(1516), - [anon_sym___forceinline] = ACTIONS(1516), - [anon_sym_thread_local] = ACTIONS(1516), - [anon_sym___thread] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_constexpr] = ACTIONS(1516), - [anon_sym_volatile] = ACTIONS(1516), - [anon_sym_restrict] = ACTIONS(1516), - [anon_sym___restrict__] = ACTIONS(1516), - [anon_sym__Atomic] = ACTIONS(1516), - [anon_sym__Noreturn] = ACTIONS(1516), - [anon_sym_noreturn] = ACTIONS(1516), - [sym_primitive_type] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_goto] = ACTIONS(1516), - [anon_sym___try] = ACTIONS(1516), - [anon_sym___leave] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym___alignof__] = ACTIONS(1516), - [anon_sym___alignof] = ACTIONS(1516), - [anon_sym__alignof] = ACTIONS(1516), - [anon_sym_alignof] = ACTIONS(1516), - [anon_sym__Alignof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1516), - [anon_sym__Generic] = ACTIONS(1516), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym___asm__] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1518), - [anon_sym_L_SQUOTE] = ACTIONS(1518), - [anon_sym_u_SQUOTE] = ACTIONS(1518), - [anon_sym_U_SQUOTE] = ACTIONS(1518), - [anon_sym_u8_SQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), - [sym_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(1462), - [aux_sym_preproc_include_token1] = ACTIONS(1462), - [aux_sym_preproc_def_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token2] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), - [aux_sym_preproc_else_token1] = ACTIONS(1462), - [aux_sym_preproc_elif_token1] = ACTIONS(1462), - [sym_preproc_directive] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym___extension__] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym___attribute__] = ACTIONS(1462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), - [anon_sym___declspec] = ACTIONS(1462), - [anon_sym___cdecl] = ACTIONS(1462), - [anon_sym___clrcall] = ACTIONS(1462), - [anon_sym___stdcall] = ACTIONS(1462), - [anon_sym___fastcall] = ACTIONS(1462), - [anon_sym___thiscall] = ACTIONS(1462), - [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_auto] = ACTIONS(1462), - [anon_sym_register] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym___inline] = ACTIONS(1462), - [anon_sym___inline__] = ACTIONS(1462), - [anon_sym___forceinline] = ACTIONS(1462), - [anon_sym_thread_local] = ACTIONS(1462), - [anon_sym___thread] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_constexpr] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [anon_sym_restrict] = ACTIONS(1462), - [anon_sym___restrict__] = ACTIONS(1462), - [anon_sym__Atomic] = ACTIONS(1462), - [anon_sym__Noreturn] = ACTIONS(1462), - [anon_sym_noreturn] = ACTIONS(1462), - [sym_primitive_type] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_goto] = ACTIONS(1462), - [anon_sym___try] = ACTIONS(1462), - [anon_sym___leave] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1462), - [anon_sym___alignof__] = ACTIONS(1462), - [anon_sym___alignof] = ACTIONS(1462), - [anon_sym__alignof] = ACTIONS(1462), - [anon_sym_alignof] = ACTIONS(1462), - [anon_sym__Alignof] = ACTIONS(1462), - [anon_sym_offsetof] = ACTIONS(1462), - [anon_sym__Generic] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1462), - [anon_sym___asm__] = ACTIONS(1462), - [sym_number_literal] = ACTIONS(1464), - [anon_sym_L_SQUOTE] = ACTIONS(1464), - [anon_sym_u_SQUOTE] = ACTIONS(1464), - [anon_sym_U_SQUOTE] = ACTIONS(1464), - [anon_sym_u8_SQUOTE] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_L_DQUOTE] = ACTIONS(1464), - [anon_sym_u_DQUOTE] = ACTIONS(1464), - [anon_sym_U_DQUOTE] = ACTIONS(1464), - [anon_sym_u8_DQUOTE] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [anon_sym_NULL] = ACTIONS(1462), - [anon_sym_nullptr] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [aux_sym_preproc_else_token1] = ACTIONS(1442), - [aux_sym_preproc_elif_token1] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [aux_sym_preproc_else_token1] = ACTIONS(1446), - [aux_sym_preproc_elif_token1] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [sym_identifier] = ACTIONS(1478), - [aux_sym_preproc_include_token1] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [aux_sym_preproc_if_token2] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [aux_sym_preproc_else_token1] = ACTIONS(1478), - [aux_sym_preproc_elif_token1] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym___extension__] = ACTIONS(1478), - [anon_sym_typedef] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), - [anon_sym___declspec] = ACTIONS(1478), - [anon_sym___cdecl] = ACTIONS(1478), - [anon_sym___clrcall] = ACTIONS(1478), - [anon_sym___stdcall] = ACTIONS(1478), - [anon_sym___fastcall] = ACTIONS(1478), - [anon_sym___thiscall] = ACTIONS(1478), - [anon_sym___vectorcall] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_signed] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___inline] = ACTIONS(1478), - [anon_sym___inline__] = ACTIONS(1478), - [anon_sym___forceinline] = ACTIONS(1478), - [anon_sym_thread_local] = ACTIONS(1478), - [anon_sym___thread] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_constexpr] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym___restrict__] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym__Noreturn] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_goto] = ACTIONS(1478), - [anon_sym___try] = ACTIONS(1478), - [anon_sym___leave] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_sizeof] = ACTIONS(1478), - [anon_sym___alignof__] = ACTIONS(1478), - [anon_sym___alignof] = ACTIONS(1478), - [anon_sym__alignof] = ACTIONS(1478), - [anon_sym_alignof] = ACTIONS(1478), - [anon_sym__Alignof] = ACTIONS(1478), - [anon_sym_offsetof] = ACTIONS(1478), - [anon_sym__Generic] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1478), - [anon_sym___asm__] = ACTIONS(1478), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_L_SQUOTE] = ACTIONS(1480), - [anon_sym_u_SQUOTE] = ACTIONS(1480), - [anon_sym_U_SQUOTE] = ACTIONS(1480), - [anon_sym_u8_SQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_L_DQUOTE] = ACTIONS(1480), - [anon_sym_u_DQUOTE] = ACTIONS(1480), - [anon_sym_U_DQUOTE] = ACTIONS(1480), - [anon_sym_u8_DQUOTE] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [anon_sym_NULL] = ACTIONS(1478), - [anon_sym_nullptr] = ACTIONS(1478), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(1486), - [aux_sym_preproc_include_token1] = ACTIONS(1486), - [aux_sym_preproc_def_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token2] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), - [aux_sym_preproc_else_token1] = ACTIONS(1486), - [aux_sym_preproc_elif_token1] = ACTIONS(1486), - [sym_preproc_directive] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym___extension__] = ACTIONS(1486), - [anon_sym_typedef] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym___attribute__] = ACTIONS(1486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), - [anon_sym___declspec] = ACTIONS(1486), - [anon_sym___cdecl] = ACTIONS(1486), - [anon_sym___clrcall] = ACTIONS(1486), - [anon_sym___stdcall] = ACTIONS(1486), - [anon_sym___fastcall] = ACTIONS(1486), - [anon_sym___thiscall] = ACTIONS(1486), - [anon_sym___vectorcall] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_auto] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym___inline] = ACTIONS(1486), - [anon_sym___inline__] = ACTIONS(1486), - [anon_sym___forceinline] = ACTIONS(1486), - [anon_sym_thread_local] = ACTIONS(1486), - [anon_sym___thread] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_constexpr] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_restrict] = ACTIONS(1486), - [anon_sym___restrict__] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(1486), - [anon_sym__Noreturn] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [sym_primitive_type] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_goto] = ACTIONS(1486), - [anon_sym___try] = ACTIONS(1486), - [anon_sym___leave] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_sizeof] = ACTIONS(1486), - [anon_sym___alignof__] = ACTIONS(1486), - [anon_sym___alignof] = ACTIONS(1486), - [anon_sym__alignof] = ACTIONS(1486), - [anon_sym_alignof] = ACTIONS(1486), - [anon_sym__Alignof] = ACTIONS(1486), - [anon_sym_offsetof] = ACTIONS(1486), - [anon_sym__Generic] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1486), - [anon_sym___asm__] = ACTIONS(1486), - [sym_number_literal] = ACTIONS(1488), - [anon_sym_L_SQUOTE] = ACTIONS(1488), - [anon_sym_u_SQUOTE] = ACTIONS(1488), - [anon_sym_U_SQUOTE] = ACTIONS(1488), - [anon_sym_u8_SQUOTE] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [anon_sym_NULL] = ACTIONS(1486), - [anon_sym_nullptr] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - }, - [242] = { - [sym_else_clause] = STATE(249), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [245] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [247] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [189] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [190] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [191] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [192] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [193] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [252] = { + [194] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [195] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [196] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [197] = { [sym_identifier] = ACTIONS(1338), [aux_sym_preproc_include_token1] = ACTIONS(1338), [aux_sym_preproc_def_token1] = ACTIONS(1338), [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), [sym_preproc_directive] = ACTIONS(1338), [anon_sym_LPAREN2] = ACTIONS(1340), [anon_sym_BANG] = ACTIONS(1340), @@ -46403,7 +41239,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1338), [anon_sym___vectorcall] = ACTIONS(1338), [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), [anon_sym_signed] = ACTIONS(1338), [anon_sym_unsigned] = ACTIONS(1338), [anon_sym_long] = ACTIONS(1338), @@ -46472,111 +41307,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [198] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [254] = { + [199] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [200] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [201] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [aux_sym_preproc_else_token1] = ACTIONS(1320), + [aux_sym_preproc_elif_token1] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [203] = { [sym_identifier] = ACTIONS(1390), [aux_sym_preproc_include_token1] = ACTIONS(1390), [aux_sym_preproc_def_token1] = ACTIONS(1390), [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), [sym_preproc_directive] = ACTIONS(1390), [anon_sym_LPAREN2] = ACTIONS(1392), [anon_sym_BANG] = ACTIONS(1392), @@ -46599,7 +41839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1390), [anon_sym___vectorcall] = ACTIONS(1390), [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), [anon_sym_signed] = ACTIONS(1390), [anon_sym_unsigned] = ACTIONS(1390), [anon_sym_long] = ACTIONS(1390), @@ -46668,307 +41907,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [204] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [205] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [206] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [258] = { + [207] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [208] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + }, + [209] = { [sym_identifier] = ACTIONS(1334), [aux_sym_preproc_include_token1] = ACTIONS(1334), [aux_sym_preproc_def_token1] = ACTIONS(1334), [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), [sym_preproc_directive] = ACTIONS(1334), [anon_sym_LPAREN2] = ACTIONS(1336), [anon_sym_BANG] = ACTIONS(1336), @@ -46991,7 +42439,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1334), [anon_sym___vectorcall] = ACTIONS(1334), [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), [anon_sym_signed] = ACTIONS(1334), [anon_sym_unsigned] = ACTIONS(1334), [anon_sym_long] = ACTIONS(1334), @@ -47060,301 +42507,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), - [sym_comment] = ACTIONS(3), - }, - [260] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [210] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [262] = { + [211] = { [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), [aux_sym_preproc_def_token1] = ACTIONS(1402), @@ -47362,6 +42615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1402), [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), [sym_preproc_directive] = ACTIONS(1402), [anon_sym_LPAREN2] = ACTIONS(1404), [anon_sym_BANG] = ACTIONS(1404), @@ -47452,699 +42707,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [264] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [212] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [213] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [268] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [214] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [215] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [270] = { + [216] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), [sym_preproc_directive] = ACTIONS(1306), [anon_sym_LPAREN2] = ACTIONS(1308), [anon_sym_BANG] = ACTIONS(1308), @@ -48167,7 +43139,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1306), [anon_sym___vectorcall] = ACTIONS(1306), [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), [anon_sym_signed] = ACTIONS(1306), [anon_sym_unsigned] = ACTIONS(1306), [anon_sym_long] = ACTIONS(1306), @@ -48236,4123 +43207,5832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [217] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [aux_sym_preproc_else_token1] = ACTIONS(1310), + [aux_sym_preproc_elif_token1] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [aux_sym_preproc_else_token1] = ACTIONS(1478), + [aux_sym_preproc_elif_token1] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [223] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym___try] = ACTIONS(1522), + [anon_sym___leave] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), [sym_comment] = ACTIONS(3), }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [224] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [274] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [225] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [275] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [226] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [227] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [aux_sym_preproc_else_token1] = ACTIONS(1518), + [aux_sym_preproc_elif_token1] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym___try] = ACTIONS(1518), + [anon_sym___leave] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [228] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [229] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [aux_sym_preproc_else_token1] = ACTIONS(1510), + [aux_sym_preproc_elif_token1] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym___try] = ACTIONS(1510), + [anon_sym___leave] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [230] = { + [sym_else_clause] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [280] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [231] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [281] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [232] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [aux_sym_preproc_else_token1] = ACTIONS(1526), + [aux_sym_preproc_elif_token1] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym___try] = ACTIONS(1526), + [anon_sym___leave] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), [sym_comment] = ACTIONS(3), }, - [282] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [233] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [aux_sym_preproc_else_token1] = ACTIONS(1506), + [aux_sym_preproc_elif_token1] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym___try] = ACTIONS(1506), + [anon_sym___leave] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), [sym_comment] = ACTIONS(3), }, - [283] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [234] = { + [sym_identifier] = ACTIONS(1494), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [aux_sym_preproc_else_token1] = ACTIONS(1494), + [aux_sym_preproc_elif_token1] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [237] = { + [sym_identifier] = ACTIONS(1490), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [aux_sym_preproc_else_token1] = ACTIONS(1490), + [aux_sym_preproc_elif_token1] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym__expression] = STATE(902), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(884), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_call_expression] = STATE(884), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(884), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(884), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1538), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_TILDE] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1550), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [239] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [aux_sym_preproc_else_token1] = ACTIONS(1514), + [aux_sym_preproc_elif_token1] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym___try] = ACTIONS(1514), + [anon_sym___leave] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), [sym_comment] = ACTIONS(3), }, - [285] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [240] = { + [sym__expression] = STATE(902), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(884), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_call_expression] = STATE(884), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(884), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(884), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(890), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_TILDE] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1556), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [241] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [aux_sym_preproc_else_token1] = ACTIONS(1486), + [aux_sym_preproc_elif_token1] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), [sym_comment] = ACTIONS(3), }, - [287] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [242] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [243] = { + [sym_else_clause] = STATE(271), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [244] = { + [sym_else_clause] = STATE(352), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [290] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [245] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [246] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [aux_sym_preproc_else_token1] = ACTIONS(1530), + [aux_sym_preproc_elif_token1] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym___try] = ACTIONS(1530), + [anon_sym___leave] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [247] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [293] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [248] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [249] = { + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [aux_sym_preproc_else_token1] = ACTIONS(1502), + [aux_sym_preproc_elif_token1] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1504), + [anon_sym_u_SQUOTE] = ACTIONS(1504), + [anon_sym_U_SQUOTE] = ACTIONS(1504), + [anon_sym_u8_SQUOTE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_L_DQUOTE] = ACTIONS(1504), + [anon_sym_u_DQUOTE] = ACTIONS(1504), + [anon_sym_U_DQUOTE] = ACTIONS(1504), + [anon_sym_u8_DQUOTE] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [250] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [251] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [252] = { + [sym_identifier] = ACTIONS(1498), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [aux_sym_preproc_else_token1] = ACTIONS(1498), + [aux_sym_preproc_elif_token1] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [253] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [254] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_else_token1] = ACTIONS(1482), + [aux_sym_preproc_elif_token1] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [255] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [256] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [257] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [259] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [304] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [260] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [263] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [264] = { + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [265] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [308] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [266] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [267] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [268] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [269] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [270] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [272] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [313] = { + [273] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [276] = { [ts_builtin_sym_end] = ACTIONS(1412), [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), @@ -52450,3442 +49130,4128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [278] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [319] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [279] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [280] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [281] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [283] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [284] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [286] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [324] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [287] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [288] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [289] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [290] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [292] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [294] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [295] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [296] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [297] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [298] = { + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [299] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [300] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [302] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [303] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [305] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [306] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [307] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [308] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [309] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [310] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [311] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [312] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [313] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [316] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [317] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1396), + [318] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [319] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), [sym_preproc_directive] = ACTIONS(1394), @@ -55978,301 +53344,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym___extension__] = ACTIONS(1312), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym___inline] = ACTIONS(1312), - [anon_sym___inline__] = ACTIONS(1312), - [anon_sym___forceinline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym___thread] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym___try] = ACTIONS(1312), - [anon_sym___leave] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym___alignof__] = ACTIONS(1312), - [anon_sym___alignof] = ACTIONS(1312), - [anon_sym__alignof] = ACTIONS(1312), - [anon_sym_alignof] = ACTIONS(1312), - [anon_sym__Alignof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [320] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [353] = { + [321] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), @@ -56370,12 +53540,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1308), + [322] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [323] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), [sym_preproc_directive] = ACTIONS(1306), @@ -56468,301 +53736,1281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [324] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [325] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [326] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [327] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [328] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [330] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [331] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [332] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [333] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [358] = { + [335] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [337] = { [sym_identifier] = ACTIONS(1358), [aux_sym_preproc_include_token1] = ACTIONS(1358), [aux_sym_preproc_def_token1] = ACTIONS(1358), @@ -56860,894 +55108,1678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [338] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym___extension__] = ACTIONS(1320), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym___inline] = ACTIONS(1320), + [anon_sym___inline__] = ACTIONS(1320), + [anon_sym___forceinline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym___thread] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym___try] = ACTIONS(1320), + [anon_sym___leave] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym___alignof__] = ACTIONS(1320), + [anon_sym___alignof] = ACTIONS(1320), + [anon_sym__alignof] = ACTIONS(1320), + [anon_sym_alignof] = ACTIONS(1320), + [anon_sym__Alignof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [sym_primitive_type] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_else] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [sym_primitive_type] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [360] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [346] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [347] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [348] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), + [349] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [364] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [350] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1378), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [351] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [sym_primitive_type] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_else] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym___extension__] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [352] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [353] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [354] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [368] = { - [ts_builtin_sym_end] = ACTIONS(1300), + [355] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), [sym_preproc_directive] = ACTIONS(1298), @@ -57840,596 +56872,987 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [356] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [357] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [359] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_else] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [361] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [362] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym___extension__] = ACTIONS(1386), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [363] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [364] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [sym_primitive_type] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_else] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [365] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1308), + [366] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), @@ -58458,6 +57881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1306), [anon_sym___vectorcall] = ACTIONS(1306), [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), [anon_sym_signed] = ACTIONS(1306), [anon_sym_unsigned] = ACTIONS(1306), [anon_sym_long] = ACTIONS(1306), @@ -58526,2285 +57950,3579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym___extension__] = ACTIONS(1352), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym___inline] = ACTIONS(1352), - [anon_sym___inline__] = ACTIONS(1352), - [anon_sym___forceinline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym___thread] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_else] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym___try] = ACTIONS(1352), - [anon_sym___leave] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym___alignof__] = ACTIONS(1352), - [anon_sym___alignof] = ACTIONS(1352), - [anon_sym__alignof] = ACTIONS(1352), - [anon_sym_alignof] = ACTIONS(1352), - [anon_sym__Alignof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [367] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [368] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [369] = { + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [370] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_else] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [372] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym___extension__] = ACTIONS(1356), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym___inline] = ACTIONS(1356), + [anon_sym___inline__] = ACTIONS(1356), + [anon_sym___forceinline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym___thread] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym___try] = ACTIONS(1356), + [anon_sym___leave] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym___alignof__] = ACTIONS(1356), + [anon_sym___alignof] = ACTIONS(1356), + [anon_sym__alignof] = ACTIONS(1356), + [anon_sym_alignof] = ACTIONS(1356), + [anon_sym__Alignof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [373] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym_attribute_declaration] = STATE(391), - [sym_compound_statement] = STATE(172), - [sym_attributed_statement] = STATE(172), - [sym_labeled_statement] = STATE(172), - [sym_expression_statement] = STATE(172), - [sym_if_statement] = STATE(172), - [sym_switch_statement] = STATE(172), - [sym_case_statement] = STATE(172), - [sym_while_statement] = STATE(172), - [sym_do_statement] = STATE(172), - [sym_for_statement] = STATE(172), - [sym_return_statement] = STATE(172), - [sym_break_statement] = STATE(172), - [sym_continue_statement] = STATE(172), - [sym_goto_statement] = STATE(172), - [sym_seh_try_statement] = STATE(172), - [sym_seh_leave_statement] = STATE(172), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [374] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_identifier] = ACTIONS(1438), - [aux_sym_preproc_include_token1] = ACTIONS(1438), - [aux_sym_preproc_def_token1] = ACTIONS(1438), - [aux_sym_preproc_if_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), - [sym_preproc_directive] = ACTIONS(1438), - [anon_sym_LPAREN2] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym___attribute__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), - [anon_sym___declspec] = ACTIONS(1438), - [anon_sym___cdecl] = ACTIONS(1438), - [anon_sym___clrcall] = ACTIONS(1438), - [anon_sym___stdcall] = ACTIONS(1438), - [anon_sym___fastcall] = ACTIONS(1438), - [anon_sym___thiscall] = ACTIONS(1438), - [anon_sym___vectorcall] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_signed] = ACTIONS(1438), - [anon_sym_unsigned] = ACTIONS(1438), - [anon_sym_long] = ACTIONS(1438), - [anon_sym_short] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_auto] = ACTIONS(1438), - [anon_sym_register] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym___inline] = ACTIONS(1438), - [anon_sym___inline__] = ACTIONS(1438), - [anon_sym___forceinline] = ACTIONS(1438), - [anon_sym_thread_local] = ACTIONS(1438), - [anon_sym___thread] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_constexpr] = ACTIONS(1438), - [anon_sym_volatile] = ACTIONS(1438), - [anon_sym_restrict] = ACTIONS(1438), - [anon_sym___restrict__] = ACTIONS(1438), - [anon_sym__Atomic] = ACTIONS(1438), - [anon_sym__Noreturn] = ACTIONS(1438), - [anon_sym_noreturn] = ACTIONS(1438), - [sym_primitive_type] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_do] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_goto] = ACTIONS(1438), - [anon_sym___try] = ACTIONS(1438), - [anon_sym___leave] = ACTIONS(1438), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_sizeof] = ACTIONS(1438), - [anon_sym___alignof__] = ACTIONS(1438), - [anon_sym___alignof] = ACTIONS(1438), - [anon_sym__alignof] = ACTIONS(1438), - [anon_sym_alignof] = ACTIONS(1438), - [anon_sym__Alignof] = ACTIONS(1438), - [anon_sym_offsetof] = ACTIONS(1438), - [anon_sym__Generic] = ACTIONS(1438), - [anon_sym_asm] = ACTIONS(1438), - [anon_sym___asm__] = ACTIONS(1438), - [sym_number_literal] = ACTIONS(1440), - [anon_sym_L_SQUOTE] = ACTIONS(1440), - [anon_sym_u_SQUOTE] = ACTIONS(1440), - [anon_sym_U_SQUOTE] = ACTIONS(1440), - [anon_sym_u8_SQUOTE] = ACTIONS(1440), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_L_DQUOTE] = ACTIONS(1440), - [anon_sym_u_DQUOTE] = ACTIONS(1440), - [anon_sym_U_DQUOTE] = ACTIONS(1440), - [anon_sym_u8_DQUOTE] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [anon_sym_NULL] = ACTIONS(1438), - [anon_sym_nullptr] = ACTIONS(1438), + [375] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [sym_primitive_type] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(2272), - [sym_attributed_statement] = STATE(2272), - [sym_labeled_statement] = STATE(2272), - [sym_expression_statement] = STATE(2272), - [sym_if_statement] = STATE(2272), - [sym_switch_statement] = STATE(2272), - [sym_case_statement] = STATE(2272), - [sym_while_statement] = STATE(2272), - [sym_do_statement] = STATE(2272), - [sym_for_statement] = STATE(2272), - [sym_return_statement] = STATE(2272), - [sym_break_statement] = STATE(2272), - [sym_continue_statement] = STATE(2272), - [sym_goto_statement] = STATE(2272), - [sym_seh_try_statement] = STATE(2272), - [sym_seh_leave_statement] = STATE(2272), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [376] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1508), - [aux_sym_preproc_include_token1] = ACTIONS(1508), - [aux_sym_preproc_def_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), - [sym_preproc_directive] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___extension__] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym___attribute__] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), - [anon_sym___declspec] = ACTIONS(1508), - [anon_sym___cdecl] = ACTIONS(1508), - [anon_sym___clrcall] = ACTIONS(1508), - [anon_sym___stdcall] = ACTIONS(1508), - [anon_sym___fastcall] = ACTIONS(1508), - [anon_sym___thiscall] = ACTIONS(1508), - [anon_sym___vectorcall] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1508), - [anon_sym_unsigned] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_auto] = ACTIONS(1508), - [anon_sym_register] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym___inline] = ACTIONS(1508), - [anon_sym___inline__] = ACTIONS(1508), - [anon_sym___forceinline] = ACTIONS(1508), - [anon_sym_thread_local] = ACTIONS(1508), - [anon_sym___thread] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_constexpr] = ACTIONS(1508), - [anon_sym_volatile] = ACTIONS(1508), - [anon_sym_restrict] = ACTIONS(1508), - [anon_sym___restrict__] = ACTIONS(1508), - [anon_sym__Atomic] = ACTIONS(1508), - [anon_sym__Noreturn] = ACTIONS(1508), - [anon_sym_noreturn] = ACTIONS(1508), - [sym_primitive_type] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_goto] = ACTIONS(1508), - [anon_sym___try] = ACTIONS(1508), - [anon_sym___leave] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1508), - [anon_sym___alignof__] = ACTIONS(1508), - [anon_sym___alignof] = ACTIONS(1508), - [anon_sym__alignof] = ACTIONS(1508), - [anon_sym_alignof] = ACTIONS(1508), - [anon_sym__Alignof] = ACTIONS(1508), - [anon_sym_offsetof] = ACTIONS(1508), - [anon_sym__Generic] = ACTIONS(1508), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym___asm__] = ACTIONS(1508), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1510), - [anon_sym_u_SQUOTE] = ACTIONS(1510), - [anon_sym_U_SQUOTE] = ACTIONS(1510), - [anon_sym_u8_SQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_L_DQUOTE] = ACTIONS(1510), - [anon_sym_u_DQUOTE] = ACTIONS(1510), - [anon_sym_U_DQUOTE] = ACTIONS(1510), - [anon_sym_u8_DQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [anon_sym_NULL] = ACTIONS(1508), - [anon_sym_nullptr] = ACTIONS(1508), + [377] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_identifier] = ACTIONS(1512), - [aux_sym_preproc_include_token1] = ACTIONS(1512), - [aux_sym_preproc_def_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), - [sym_preproc_directive] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym___extension__] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), - [anon_sym___declspec] = ACTIONS(1512), - [anon_sym___cdecl] = ACTIONS(1512), - [anon_sym___clrcall] = ACTIONS(1512), - [anon_sym___stdcall] = ACTIONS(1512), - [anon_sym___fastcall] = ACTIONS(1512), - [anon_sym___thiscall] = ACTIONS(1512), - [anon_sym___vectorcall] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1512), - [anon_sym_unsigned] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_auto] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym___inline] = ACTIONS(1512), - [anon_sym___inline__] = ACTIONS(1512), - [anon_sym___forceinline] = ACTIONS(1512), - [anon_sym_thread_local] = ACTIONS(1512), - [anon_sym___thread] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_constexpr] = ACTIONS(1512), - [anon_sym_volatile] = ACTIONS(1512), - [anon_sym_restrict] = ACTIONS(1512), - [anon_sym___restrict__] = ACTIONS(1512), - [anon_sym__Atomic] = ACTIONS(1512), - [anon_sym__Noreturn] = ACTIONS(1512), - [anon_sym_noreturn] = ACTIONS(1512), - [sym_primitive_type] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_goto] = ACTIONS(1512), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1512), - [anon_sym___alignof__] = ACTIONS(1512), - [anon_sym___alignof] = ACTIONS(1512), - [anon_sym__alignof] = ACTIONS(1512), - [anon_sym_alignof] = ACTIONS(1512), - [anon_sym__Alignof] = ACTIONS(1512), - [anon_sym_offsetof] = ACTIONS(1512), - [anon_sym__Generic] = ACTIONS(1512), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym___asm__] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1514), - [anon_sym_L_SQUOTE] = ACTIONS(1514), - [anon_sym_u_SQUOTE] = ACTIONS(1514), - [anon_sym_U_SQUOTE] = ACTIONS(1514), - [anon_sym_u8_SQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1512), - [sym_false] = ACTIONS(1512), - [anon_sym_NULL] = ACTIONS(1512), - [anon_sym_nullptr] = ACTIONS(1512), + [378] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [379] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [sym_primitive_type] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_else] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(125), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(125), - [sym_expression_statement] = STATE(125), - [sym_if_statement] = STATE(125), - [sym_switch_statement] = STATE(125), - [sym_case_statement] = STATE(125), - [sym_while_statement] = STATE(125), - [sym_do_statement] = STATE(125), - [sym_for_statement] = STATE(125), - [sym_return_statement] = STATE(125), - [sym_break_statement] = STATE(125), - [sym_continue_statement] = STATE(125), - [sym_goto_statement] = STATE(125), - [sym_seh_try_statement] = STATE(125), - [sym_seh_leave_statement] = STATE(125), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [380] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(90), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_case_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym_seh_try_statement] = STATE(90), - [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [381] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [386] = { - [sym_identifier] = ACTIONS(1478), - [aux_sym_preproc_include_token1] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym___extension__] = ACTIONS(1478), - [anon_sym_typedef] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), - [anon_sym___declspec] = ACTIONS(1478), - [anon_sym___cdecl] = ACTIONS(1478), - [anon_sym___clrcall] = ACTIONS(1478), - [anon_sym___stdcall] = ACTIONS(1478), - [anon_sym___fastcall] = ACTIONS(1478), - [anon_sym___thiscall] = ACTIONS(1478), - [anon_sym___vectorcall] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_signed] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___inline] = ACTIONS(1478), - [anon_sym___inline__] = ACTIONS(1478), - [anon_sym___forceinline] = ACTIONS(1478), - [anon_sym_thread_local] = ACTIONS(1478), - [anon_sym___thread] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_constexpr] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym___restrict__] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym__Noreturn] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_goto] = ACTIONS(1478), - [anon_sym___try] = ACTIONS(1478), - [anon_sym___leave] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_sizeof] = ACTIONS(1478), - [anon_sym___alignof__] = ACTIONS(1478), - [anon_sym___alignof] = ACTIONS(1478), - [anon_sym__alignof] = ACTIONS(1478), - [anon_sym_alignof] = ACTIONS(1478), - [anon_sym__Alignof] = ACTIONS(1478), - [anon_sym_offsetof] = ACTIONS(1478), - [anon_sym__Generic] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1478), - [anon_sym___asm__] = ACTIONS(1478), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_L_SQUOTE] = ACTIONS(1480), - [anon_sym_u_SQUOTE] = ACTIONS(1480), - [anon_sym_U_SQUOTE] = ACTIONS(1480), - [anon_sym_u8_SQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_L_DQUOTE] = ACTIONS(1480), - [anon_sym_u_DQUOTE] = ACTIONS(1480), - [anon_sym_U_DQUOTE] = ACTIONS(1480), - [anon_sym_u8_DQUOTE] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [anon_sym_NULL] = ACTIONS(1478), - [anon_sym_nullptr] = ACTIONS(1478), + [382] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [383] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_else] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(229), - [sym_attributed_statement] = STATE(229), - [sym_labeled_statement] = STATE(229), - [sym_expression_statement] = STATE(229), - [sym_if_statement] = STATE(229), - [sym_switch_statement] = STATE(229), - [sym_case_statement] = STATE(229), - [sym_while_statement] = STATE(229), - [sym_do_statement] = STATE(229), - [sym_for_statement] = STATE(229), - [sym_return_statement] = STATE(229), - [sym_break_statement] = STATE(229), - [sym_continue_statement] = STATE(229), - [sym_goto_statement] = STATE(229), - [sym_seh_try_statement] = STATE(229), - [sym_seh_leave_statement] = STATE(229), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [384] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [389] = { - [sym_attribute_declaration] = STATE(389), - [sym_compound_statement] = STATE(206), - [sym_attributed_statement] = STATE(206), - [sym_labeled_statement] = STATE(206), - [sym_expression_statement] = STATE(206), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(206), - [sym_case_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_do_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_return_statement] = STATE(206), - [sym_break_statement] = STATE(206), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(206), - [sym_seh_try_statement] = STATE(206), - [sym_seh_leave_statement] = STATE(206), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1575), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_goto] = ACTIONS(1614), - [anon_sym___try] = ACTIONS(1617), - [anon_sym___leave] = ACTIONS(1620), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), + [385] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_attribute_declaration] = STATE(396), - [sym_compound_statement] = STATE(366), - [sym_attributed_statement] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_switch_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_seh_try_statement] = STATE(366), - [sym_seh_leave_statement] = STATE(366), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(1656), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [386] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_attribute_declaration] = STATE(389), - [sym_compound_statement] = STATE(206), - [sym_attributed_statement] = STATE(206), - [sym_labeled_statement] = STATE(206), - [sym_expression_statement] = STATE(206), - [sym_if_statement] = STATE(206), - [sym_switch_statement] = STATE(206), - [sym_case_statement] = STATE(206), - [sym_while_statement] = STATE(206), - [sym_do_statement] = STATE(206), - [sym_for_statement] = STATE(206), - [sym_return_statement] = STATE(206), - [sym_break_statement] = STATE(206), - [sym_continue_statement] = STATE(206), - [sym_goto_statement] = STATE(206), - [sym_seh_try_statement] = STATE(206), - [sym_seh_leave_statement] = STATE(206), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(389), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [387] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), + [sym_comment] = ACTIONS(3), + }, + [388] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [389] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [390] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [391] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [392] = { - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1516), - [aux_sym_preproc_def_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), - [sym_preproc_directive] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym___extension__] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), - [anon_sym___declspec] = ACTIONS(1516), - [anon_sym___cdecl] = ACTIONS(1516), - [anon_sym___clrcall] = ACTIONS(1516), - [anon_sym___stdcall] = ACTIONS(1516), - [anon_sym___fastcall] = ACTIONS(1516), - [anon_sym___thiscall] = ACTIONS(1516), - [anon_sym___vectorcall] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1516), - [anon_sym_unsigned] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_auto] = ACTIONS(1516), - [anon_sym_register] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym___inline] = ACTIONS(1516), - [anon_sym___inline__] = ACTIONS(1516), - [anon_sym___forceinline] = ACTIONS(1516), - [anon_sym_thread_local] = ACTIONS(1516), - [anon_sym___thread] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_constexpr] = ACTIONS(1516), - [anon_sym_volatile] = ACTIONS(1516), - [anon_sym_restrict] = ACTIONS(1516), - [anon_sym___restrict__] = ACTIONS(1516), - [anon_sym__Atomic] = ACTIONS(1516), - [anon_sym__Noreturn] = ACTIONS(1516), - [anon_sym_noreturn] = ACTIONS(1516), - [sym_primitive_type] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_goto] = ACTIONS(1516), - [anon_sym___try] = ACTIONS(1516), - [anon_sym___leave] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym___alignof__] = ACTIONS(1516), - [anon_sym___alignof] = ACTIONS(1516), - [anon_sym__alignof] = ACTIONS(1516), - [anon_sym_alignof] = ACTIONS(1516), - [anon_sym__Alignof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1516), - [anon_sym__Generic] = ACTIONS(1516), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym___asm__] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1518), - [anon_sym_L_SQUOTE] = ACTIONS(1518), - [anon_sym_u_SQUOTE] = ACTIONS(1518), - [anon_sym_U_SQUOTE] = ACTIONS(1518), - [anon_sym_u8_SQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [393] = { - [sym_identifier] = ACTIONS(1482), - [aux_sym_preproc_include_token1] = ACTIONS(1482), - [aux_sym_preproc_def_token1] = ACTIONS(1482), - [aux_sym_preproc_if_token1] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), - [sym_preproc_directive] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym___extension__] = ACTIONS(1482), - [anon_sym_typedef] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym___attribute__] = ACTIONS(1482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym___declspec] = ACTIONS(1482), - [anon_sym___cdecl] = ACTIONS(1482), - [anon_sym___clrcall] = ACTIONS(1482), - [anon_sym___stdcall] = ACTIONS(1482), - [anon_sym___fastcall] = ACTIONS(1482), - [anon_sym___thiscall] = ACTIONS(1482), - [anon_sym___vectorcall] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym___inline] = ACTIONS(1482), - [anon_sym___inline__] = ACTIONS(1482), - [anon_sym___forceinline] = ACTIONS(1482), - [anon_sym_thread_local] = ACTIONS(1482), - [anon_sym___thread] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_constexpr] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_restrict] = ACTIONS(1482), - [anon_sym___restrict__] = ACTIONS(1482), - [anon_sym__Atomic] = ACTIONS(1482), - [anon_sym__Noreturn] = ACTIONS(1482), - [anon_sym_noreturn] = ACTIONS(1482), - [sym_primitive_type] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_goto] = ACTIONS(1482), - [anon_sym___try] = ACTIONS(1482), - [anon_sym___leave] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_sizeof] = ACTIONS(1482), - [anon_sym___alignof__] = ACTIONS(1482), - [anon_sym___alignof] = ACTIONS(1482), - [anon_sym__alignof] = ACTIONS(1482), - [anon_sym_alignof] = ACTIONS(1482), - [anon_sym__Alignof] = ACTIONS(1482), - [anon_sym_offsetof] = ACTIONS(1482), - [anon_sym__Generic] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1482), - [anon_sym___asm__] = ACTIONS(1482), - [sym_number_literal] = ACTIONS(1484), - [anon_sym_L_SQUOTE] = ACTIONS(1484), - [anon_sym_u_SQUOTE] = ACTIONS(1484), - [anon_sym_U_SQUOTE] = ACTIONS(1484), - [anon_sym_u8_SQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [anon_sym_NULL] = ACTIONS(1482), - [anon_sym_nullptr] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [394] = { - [sym_attribute_declaration] = STATE(391), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [sym_labeled_statement] = STATE(176), - [sym_expression_statement] = STATE(176), - [sym_if_statement] = STATE(176), - [sym_switch_statement] = STATE(176), - [sym_case_statement] = STATE(176), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(176), - [sym_continue_statement] = STATE(176), - [sym_goto_statement] = STATE(176), - [sym_seh_try_statement] = STATE(176), - [sym_seh_leave_statement] = STATE(176), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(1546), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [396] = { - [sym_attribute_declaration] = STATE(396), - [sym_compound_statement] = STATE(366), - [sym_attributed_statement] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_switch_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_goto_statement] = STATE(366), - [sym_seh_try_statement] = STATE(366), - [sym_seh_leave_statement] = STATE(366), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(396), - [sym_identifier] = ACTIONS(1658), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_while] = ACTIONS(1679), - [anon_sym_do] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_goto] = ACTIONS(1697), - [anon_sym___try] = ACTIONS(1700), - [anon_sym___leave] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [397] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1470), - [aux_sym_preproc_def_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), - [sym_preproc_directive] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym___extension__] = ACTIONS(1470), - [anon_sym_typedef] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym___attribute__] = ACTIONS(1470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), - [anon_sym___declspec] = ACTIONS(1470), - [anon_sym___cdecl] = ACTIONS(1470), - [anon_sym___clrcall] = ACTIONS(1470), - [anon_sym___stdcall] = ACTIONS(1470), - [anon_sym___fastcall] = ACTIONS(1470), - [anon_sym___thiscall] = ACTIONS(1470), - [anon_sym___vectorcall] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_signed] = ACTIONS(1470), - [anon_sym_unsigned] = ACTIONS(1470), - [anon_sym_long] = ACTIONS(1470), - [anon_sym_short] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_auto] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_inline] = ACTIONS(1470), - [anon_sym___inline] = ACTIONS(1470), - [anon_sym___inline__] = ACTIONS(1470), - [anon_sym___forceinline] = ACTIONS(1470), - [anon_sym_thread_local] = ACTIONS(1470), - [anon_sym___thread] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_constexpr] = ACTIONS(1470), - [anon_sym_volatile] = ACTIONS(1470), - [anon_sym_restrict] = ACTIONS(1470), - [anon_sym___restrict__] = ACTIONS(1470), - [anon_sym__Atomic] = ACTIONS(1470), - [anon_sym__Noreturn] = ACTIONS(1470), - [anon_sym_noreturn] = ACTIONS(1470), - [sym_primitive_type] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_goto] = ACTIONS(1470), - [anon_sym___try] = ACTIONS(1470), - [anon_sym___leave] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_sizeof] = ACTIONS(1470), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1470), - [anon_sym__Generic] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1470), - [anon_sym___asm__] = ACTIONS(1470), - [sym_number_literal] = ACTIONS(1472), - [anon_sym_L_SQUOTE] = ACTIONS(1472), - [anon_sym_u_SQUOTE] = ACTIONS(1472), - [anon_sym_U_SQUOTE] = ACTIONS(1472), - [anon_sym_u8_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_L_DQUOTE] = ACTIONS(1472), - [anon_sym_u_DQUOTE] = ACTIONS(1472), - [anon_sym_U_DQUOTE] = ACTIONS(1472), - [anon_sym_u8_DQUOTE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [anon_sym_NULL] = ACTIONS(1470), - [anon_sym_nullptr] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, [399] = { - [sym_attribute_declaration] = STATE(391), - [sym_compound_statement] = STATE(158), - [sym_attributed_statement] = STATE(158), - [sym_labeled_statement] = STATE(158), - [sym_expression_statement] = STATE(158), - [sym_if_statement] = STATE(158), - [sym_switch_statement] = STATE(158), - [sym_case_statement] = STATE(158), - [sym_while_statement] = STATE(158), - [sym_do_statement] = STATE(158), - [sym_for_statement] = STATE(158), - [sym_return_statement] = STATE(158), - [sym_break_statement] = STATE(158), - [sym_continue_statement] = STATE(158), - [sym_goto_statement] = STATE(158), - [sym_seh_try_statement] = STATE(158), - [sym_seh_leave_statement] = STATE(158), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [400] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [401] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [402] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [sym_primitive_type] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_else] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [403] = { + [sym_attribute_declaration] = STATE(411), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym_seh_try_statement] = STATE(180), + [sym_seh_leave_statement] = STATE(180), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1562), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60813,7 +61531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -60857,51 +61575,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(2264), - [sym_attributed_statement] = STATE(2264), - [sym_labeled_statement] = STATE(2264), - [sym_expression_statement] = STATE(2264), - [sym_if_statement] = STATE(2264), - [sym_switch_statement] = STATE(2264), - [sym_case_statement] = STATE(2264), - [sym_while_statement] = STATE(2264), - [sym_do_statement] = STATE(2264), - [sym_for_statement] = STATE(2264), - [sym_return_statement] = STATE(2264), - [sym_break_statement] = STATE(2264), - [sym_continue_statement] = STATE(2264), - [sym_goto_statement] = STATE(2264), - [sym_seh_try_statement] = STATE(2264), - [sym_seh_leave_statement] = STATE(2264), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [404] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(2371), + [sym_attributed_statement] = STATE(2371), + [sym_labeled_statement] = STATE(2371), + [sym_expression_statement] = STATE(2371), + [sym_if_statement] = STATE(2371), + [sym_switch_statement] = STATE(2371), + [sym_case_statement] = STATE(2371), + [sym_while_statement] = STATE(2371), + [sym_do_statement] = STATE(2371), + [sym_for_statement] = STATE(2371), + [sym_return_statement] = STATE(2371), + [sym_break_statement] = STATE(2371), + [sym_continue_statement] = STATE(2371), + [sym_goto_statement] = STATE(2371), + [sym_seh_try_statement] = STATE(2371), + [sym_seh_leave_statement] = STATE(2371), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60910,20 +61628,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -60954,148 +61672,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1470), - [aux_sym_preproc_def_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token2] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), - [sym_preproc_directive] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym___extension__] = ACTIONS(1470), - [anon_sym_typedef] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym___attribute__] = ACTIONS(1470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), - [anon_sym___declspec] = ACTIONS(1470), - [anon_sym___cdecl] = ACTIONS(1470), - [anon_sym___clrcall] = ACTIONS(1470), - [anon_sym___stdcall] = ACTIONS(1470), - [anon_sym___fastcall] = ACTIONS(1470), - [anon_sym___thiscall] = ACTIONS(1470), - [anon_sym___vectorcall] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_signed] = ACTIONS(1470), - [anon_sym_unsigned] = ACTIONS(1470), - [anon_sym_long] = ACTIONS(1470), - [anon_sym_short] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_auto] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_inline] = ACTIONS(1470), - [anon_sym___inline] = ACTIONS(1470), - [anon_sym___inline__] = ACTIONS(1470), - [anon_sym___forceinline] = ACTIONS(1470), - [anon_sym_thread_local] = ACTIONS(1470), - [anon_sym___thread] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_constexpr] = ACTIONS(1470), - [anon_sym_volatile] = ACTIONS(1470), - [anon_sym_restrict] = ACTIONS(1470), - [anon_sym___restrict__] = ACTIONS(1470), - [anon_sym__Atomic] = ACTIONS(1470), - [anon_sym__Noreturn] = ACTIONS(1470), - [anon_sym_noreturn] = ACTIONS(1470), - [sym_primitive_type] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_goto] = ACTIONS(1470), - [anon_sym___try] = ACTIONS(1470), - [anon_sym___leave] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_sizeof] = ACTIONS(1470), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1470), - [anon_sym__Generic] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1470), - [anon_sym___asm__] = ACTIONS(1470), - [sym_number_literal] = ACTIONS(1472), - [anon_sym_L_SQUOTE] = ACTIONS(1472), - [anon_sym_u_SQUOTE] = ACTIONS(1472), - [anon_sym_U_SQUOTE] = ACTIONS(1472), - [anon_sym_u8_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_L_DQUOTE] = ACTIONS(1472), - [anon_sym_u_DQUOTE] = ACTIONS(1472), - [anon_sym_U_DQUOTE] = ACTIONS(1472), - [anon_sym_u8_DQUOTE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [anon_sym_NULL] = ACTIONS(1470), - [anon_sym_nullptr] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - }, - [402] = { - [sym_attribute_declaration] = STATE(390), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym_seh_try_statement] = STATE(298), - [sym_seh_leave_statement] = STATE(298), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(1656), + [405] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(385), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(401), + [sym_expression_statement] = STATE(400), + [sym_if_statement] = STATE(399), + [sym_switch_statement] = STATE(398), + [sym_case_statement] = STATE(397), + [sym_while_statement] = STATE(396), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(394), + [sym_return_statement] = STATE(393), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(391), + [sym_goto_statement] = STATE(390), + [sym_seh_try_statement] = STATE(389), + [sym_seh_leave_statement] = STATE(388), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61103,22 +61724,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61148,51 +61769,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(122), - [sym_attributed_statement] = STATE(122), - [sym_labeled_statement] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_if_statement] = STATE(122), - [sym_switch_statement] = STATE(122), - [sym_case_statement] = STATE(122), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_break_statement] = STATE(122), - [sym_continue_statement] = STATE(122), - [sym_goto_statement] = STATE(122), - [sym_seh_try_statement] = STATE(122), - [sym_seh_leave_statement] = STATE(122), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1556), + [406] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(382), + [sym_attributed_statement] = STATE(382), + [sym_labeled_statement] = STATE(382), + [sym_expression_statement] = STATE(382), + [sym_if_statement] = STATE(382), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(382), + [sym_while_statement] = STATE(382), + [sym_do_statement] = STATE(382), + [sym_for_statement] = STATE(382), + [sym_return_statement] = STATE(382), + [sym_break_statement] = STATE(382), + [sym_continue_statement] = STATE(382), + [sym_goto_statement] = STATE(382), + [sym_seh_try_statement] = STATE(382), + [sym_seh_leave_statement] = STATE(382), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61200,22 +61821,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61245,51 +61866,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_attribute_declaration] = STATE(390), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym_seh_try_statement] = STATE(367), - [sym_seh_leave_statement] = STATE(367), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(1656), + [407] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [408] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym_seh_try_statement] = STATE(308), + [sym_seh_leave_statement] = STATE(308), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61297,22 +62015,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61342,51 +62060,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(2280), - [sym_attributed_statement] = STATE(2280), - [sym_labeled_statement] = STATE(2280), - [sym_expression_statement] = STATE(2280), - [sym_if_statement] = STATE(2280), - [sym_switch_statement] = STATE(2280), - [sym_case_statement] = STATE(2280), - [sym_while_statement] = STATE(2280), - [sym_do_statement] = STATE(2280), - [sym_for_statement] = STATE(2280), - [sym_return_statement] = STATE(2280), - [sym_break_statement] = STATE(2280), - [sym_continue_statement] = STATE(2280), - [sym_goto_statement] = STATE(2280), - [sym_seh_try_statement] = STATE(2280), - [sym_seh_leave_statement] = STATE(2280), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [409] = { + [sym_attribute_declaration] = STATE(409), + [sym_compound_statement] = STATE(328), + [sym_attributed_statement] = STATE(328), + [sym_labeled_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_seh_try_statement] = STATE(328), + [sym_seh_leave_statement] = STATE(328), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(1576), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_switch] = ACTIONS(1603), + [anon_sym_case] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1624), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1630), + [anon_sym___try] = ACTIONS(1633), + [anon_sym___leave] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [411] = { + [sym_attribute_declaration] = STATE(443), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym_seh_try_statement] = STATE(219), + [sym_seh_leave_statement] = STATE(219), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(1562), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61394,22 +62306,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61439,148 +62351,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1516), - [aux_sym_preproc_def_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token2] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), - [sym_preproc_directive] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym___extension__] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), - [anon_sym___declspec] = ACTIONS(1516), - [anon_sym___cdecl] = ACTIONS(1516), - [anon_sym___clrcall] = ACTIONS(1516), - [anon_sym___stdcall] = ACTIONS(1516), - [anon_sym___fastcall] = ACTIONS(1516), - [anon_sym___thiscall] = ACTIONS(1516), - [anon_sym___vectorcall] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1516), - [anon_sym_unsigned] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_auto] = ACTIONS(1516), - [anon_sym_register] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym___inline] = ACTIONS(1516), - [anon_sym___inline__] = ACTIONS(1516), - [anon_sym___forceinline] = ACTIONS(1516), - [anon_sym_thread_local] = ACTIONS(1516), - [anon_sym___thread] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_constexpr] = ACTIONS(1516), - [anon_sym_volatile] = ACTIONS(1516), - [anon_sym_restrict] = ACTIONS(1516), - [anon_sym___restrict__] = ACTIONS(1516), - [anon_sym__Atomic] = ACTIONS(1516), - [anon_sym__Noreturn] = ACTIONS(1516), - [anon_sym_noreturn] = ACTIONS(1516), - [sym_primitive_type] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_goto] = ACTIONS(1516), - [anon_sym___try] = ACTIONS(1516), - [anon_sym___leave] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym___alignof__] = ACTIONS(1516), - [anon_sym___alignof] = ACTIONS(1516), - [anon_sym__alignof] = ACTIONS(1516), - [anon_sym_alignof] = ACTIONS(1516), - [anon_sym__Alignof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1516), - [anon_sym__Generic] = ACTIONS(1516), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym___asm__] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1518), - [anon_sym_L_SQUOTE] = ACTIONS(1518), - [anon_sym_u_SQUOTE] = ACTIONS(1518), - [anon_sym_U_SQUOTE] = ACTIONS(1518), - [anon_sym_u8_SQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [412] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(2249), - [sym_attributed_statement] = STATE(2249), - [sym_labeled_statement] = STATE(2249), - [sym_expression_statement] = STATE(2249), - [sym_if_statement] = STATE(2249), - [sym_switch_statement] = STATE(2249), - [sym_case_statement] = STATE(2249), - [sym_while_statement] = STATE(2249), - [sym_do_statement] = STATE(2249), - [sym_for_statement] = STATE(2249), - [sym_return_statement] = STATE(2249), - [sym_break_statement] = STATE(2249), - [sym_continue_statement] = STATE(2249), - [sym_goto_statement] = STATE(2249), - [sym_seh_try_statement] = STATE(2249), - [sym_seh_leave_statement] = STATE(2249), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [413] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [414] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym_seh_try_statement] = STATE(285), + [sym_seh_leave_statement] = STATE(285), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61588,22 +62597,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61633,51 +62642,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_attribute_declaration] = STATE(390), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym_seh_try_statement] = STATE(242), - [sym_seh_leave_statement] = STATE(242), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(1656), + [415] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym_seh_try_statement] = STATE(230), + [sym_seh_leave_statement] = STATE(230), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61685,22 +62694,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61730,51 +62739,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(2082), - [sym_attributed_statement] = STATE(2082), - [sym_labeled_statement] = STATE(2082), - [sym_expression_statement] = STATE(2082), - [sym_if_statement] = STATE(2082), - [sym_switch_statement] = STATE(2082), - [sym_case_statement] = STATE(2082), - [sym_while_statement] = STATE(2082), - [sym_do_statement] = STATE(2082), - [sym_for_statement] = STATE(2082), - [sym_return_statement] = STATE(2082), - [sym_break_statement] = STATE(2082), - [sym_continue_statement] = STATE(2082), - [sym_goto_statement] = STATE(2082), - [sym_seh_try_statement] = STATE(2082), - [sym_seh_leave_statement] = STATE(2082), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [416] = { + [sym_attribute_declaration] = STATE(409), + [sym_compound_statement] = STATE(328), + [sym_attributed_statement] = STATE(328), + [sym_labeled_statement] = STATE(328), + [sym_expression_statement] = STATE(328), + [sym_if_statement] = STATE(328), + [sym_switch_statement] = STATE(328), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(328), + [sym_do_statement] = STATE(328), + [sym_for_statement] = STATE(328), + [sym_return_statement] = STATE(328), + [sym_break_statement] = STATE(328), + [sym_continue_statement] = STATE(328), + [sym_goto_statement] = STATE(328), + [sym_seh_try_statement] = STATE(328), + [sym_seh_leave_statement] = STATE(328), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(409), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61782,22 +62791,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61827,51 +62836,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [410] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1550), + [417] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(345), + [sym_attributed_statement] = STATE(345), + [sym_labeled_statement] = STATE(345), + [sym_expression_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_switch_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_do_statement] = STATE(345), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(345), + [sym_break_statement] = STATE(345), + [sym_continue_statement] = STATE(345), + [sym_goto_statement] = STATE(345), + [sym_seh_try_statement] = STATE(345), + [sym_seh_leave_statement] = STATE(345), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -61879,22 +62888,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -61924,201 +62933,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [418] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [419] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym__expression] = STATE(949), - [sym__expression_not_binary] = STATE(990), - [sym__string] = STATE(990), - [sym_conditional_expression] = STATE(990), - [sym_assignment_expression] = STATE(990), - [sym_pointer_expression] = STATE(990), - [sym_unary_expression] = STATE(990), - [sym_binary_expression] = STATE(990), - [sym_update_expression] = STATE(990), - [sym_cast_expression] = STATE(990), - [sym_sizeof_expression] = STATE(990), - [sym_alignof_expression] = STATE(990), - [sym_offsetof_expression] = STATE(990), - [sym_generic_expression] = STATE(990), - [sym_subscript_expression] = STATE(990), - [sym_call_expression] = STATE(990), - [sym_gnu_asm_expression] = STATE(990), - [sym_field_expression] = STATE(990), - [sym_compound_literal_expression] = STATE(990), - [sym_parenthesized_expression] = STATE(990), - [sym_initializer_list] = STATE(984), - [sym_char_literal] = STATE(990), - [sym_concatenated_string] = STATE(990), - [sym_string_literal] = STATE(877), - [sym_null] = STATE(990), - [sym_identifier] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1712), - [anon_sym___alignof__] = ACTIONS(1714), - [anon_sym___alignof] = ACTIONS(1714), - [anon_sym__alignof] = ACTIONS(1714), - [anon_sym_alignof] = ACTIONS(1714), - [anon_sym__Alignof] = ACTIONS(1714), - [anon_sym_offsetof] = ACTIONS(1716), - [anon_sym__Generic] = ACTIONS(1718), - [anon_sym_asm] = ACTIONS(1720), - [anon_sym___asm__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1722), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1726), - [anon_sym_u_DQUOTE] = ACTIONS(1726), - [anon_sym_U_DQUOTE] = ACTIONS(1726), - [anon_sym_u8_DQUOTE] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [anon_sym_NULL] = ACTIONS(1730), - [anon_sym_nullptr] = ACTIONS(1730), + [420] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [413] = { + [421] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [422] = { [sym_identifier] = ACTIONS(1478), [aux_sym_preproc_include_token1] = ACTIONS(1478), [aux_sym_preproc_def_token1] = ACTIONS(1478), @@ -62215,536 +63418,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, - [414] = { - [sym_attribute_declaration] = STATE(414), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(1732), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_switch] = ACTIONS(1744), - [anon_sym_case] = ACTIONS(1747), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym___try] = ACTIONS(1774), - [anon_sym___leave] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), + [423] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym___try] = ACTIONS(1714), + [anon_sym___leave] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(284), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym_seh_try_statement] = STATE(284), - [sym_seh_leave_statement] = STATE(284), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1558), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [424] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token2] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym___try] = ACTIONS(1514), + [anon_sym___leave] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(321), - [sym_attributed_statement] = STATE(322), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(324), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(327), - [sym_case_statement] = STATE(328), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(331), - [sym_for_statement] = STATE(333), - [sym_return_statement] = STATE(335), - [sym_break_statement] = STATE(337), - [sym_continue_statement] = STATE(338), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(340), - [sym_seh_leave_statement] = STATE(341), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1780), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [425] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token2] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym___try] = ACTIONS(1526), + [anon_sym___leave] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(133), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_goto] = ACTIONS(1821), - [anon_sym___try] = ACTIONS(1824), - [anon_sym___leave] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), + [426] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym___try] = ACTIONS(1522), + [anon_sym___leave] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [427] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token2] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym___try] = ACTIONS(1518), + [anon_sym___leave] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(370), - [sym_attributed_statement] = STATE(375), - [sym_labeled_statement] = STATE(377), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(352), - [sym_while_statement] = STATE(351), - [sym_do_statement] = STATE(347), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(332), - [sym_seh_try_statement] = STATE(317), - [sym_seh_leave_statement] = STATE(286), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [428] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(340), + [sym_attributed_statement] = STATE(340), + [sym_labeled_statement] = STATE(340), + [sym_expression_statement] = STATE(340), + [sym_if_statement] = STATE(340), + [sym_switch_statement] = STATE(340), + [sym_case_statement] = STATE(340), + [sym_while_statement] = STATE(340), + [sym_do_statement] = STATE(340), + [sym_for_statement] = STATE(340), + [sym_return_statement] = STATE(340), + [sym_break_statement] = STATE(340), + [sym_continue_statement] = STATE(340), + [sym_goto_statement] = STATE(340), + [sym_seh_try_statement] = STATE(340), + [sym_seh_leave_statement] = STATE(340), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62752,22 +63955,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62797,51 +64000,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(319), - [sym_attributed_statement] = STATE(319), - [sym_labeled_statement] = STATE(319), - [sym_expression_statement] = STATE(319), - [sym_if_statement] = STATE(319), - [sym_switch_statement] = STATE(319), - [sym_case_statement] = STATE(319), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(319), - [sym_for_statement] = STATE(319), - [sym_return_statement] = STATE(319), - [sym_break_statement] = STATE(319), - [sym_continue_statement] = STATE(319), - [sym_goto_statement] = STATE(319), - [sym_seh_try_statement] = STATE(319), - [sym_seh_leave_statement] = STATE(319), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1780), + [429] = { + [sym_attribute_declaration] = STATE(416), + [sym_compound_statement] = STATE(244), + [sym_attributed_statement] = STATE(244), + [sym_labeled_statement] = STATE(244), + [sym_expression_statement] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_switch_statement] = STATE(244), + [sym_case_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_do_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_return_statement] = STATE(244), + [sym_break_statement] = STATE(244), + [sym_continue_statement] = STATE(244), + [sym_goto_statement] = STATE(244), + [sym_seh_try_statement] = STATE(244), + [sym_seh_leave_statement] = STATE(244), + [sym__expression] = STATE(1313), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2275), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(416), + [sym_identifier] = ACTIONS(1572), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62849,22 +64052,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(565), + [anon_sym_if] = ACTIONS(567), + [anon_sym_switch] = ACTIONS(569), + [anon_sym_case] = ACTIONS(571), + [anon_sym_default] = ACTIONS(573), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(577), + [anon_sym_for] = ACTIONS(579), + [anon_sym_return] = ACTIONS(581), + [anon_sym_break] = ACTIONS(583), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(587), + [anon_sym___try] = ACTIONS(589), + [anon_sym___leave] = ACTIONS(591), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62894,148 +64097,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [421] = { - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym___extension__] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), - [anon_sym___declspec] = ACTIONS(1466), - [anon_sym___cdecl] = ACTIONS(1466), - [anon_sym___clrcall] = ACTIONS(1466), - [anon_sym___stdcall] = ACTIONS(1466), - [anon_sym___fastcall] = ACTIONS(1466), - [anon_sym___thiscall] = ACTIONS(1466), - [anon_sym___vectorcall] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_signed] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym___inline] = ACTIONS(1466), - [anon_sym___inline__] = ACTIONS(1466), - [anon_sym___forceinline] = ACTIONS(1466), - [anon_sym_thread_local] = ACTIONS(1466), - [anon_sym___thread] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_constexpr] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [anon_sym___restrict__] = ACTIONS(1466), - [anon_sym__Atomic] = ACTIONS(1466), - [anon_sym__Noreturn] = ACTIONS(1466), - [anon_sym_noreturn] = ACTIONS(1466), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym___try] = ACTIONS(1466), - [anon_sym___leave] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1466), - [anon_sym__Generic] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1466), - [anon_sym___asm__] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym_u_SQUOTE] = ACTIONS(1468), - [anon_sym_U_SQUOTE] = ACTIONS(1468), - [anon_sym_u8_SQUOTE] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_u_DQUOTE] = ACTIONS(1468), - [anon_sym_U_DQUOTE] = ACTIONS(1468), - [anon_sym_u8_DQUOTE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_NULL] = ACTIONS(1466), - [anon_sym_nullptr] = ACTIONS(1466), + [430] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym___try] = ACTIONS(1530), + [anon_sym___leave] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(307), - [sym_attributed_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym_seh_try_statement] = STATE(307), - [sym_seh_leave_statement] = STATE(307), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1558), + [431] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token2] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym___try] = ACTIONS(1510), + [anon_sym___leave] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [sym_attribute_declaration] = STATE(499), + [sym_compound_statement] = STATE(97), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_case_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1720), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63043,22 +64343,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63088,11 +64388,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [423] = { + [433] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token2] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym___try] = ACTIONS(1506), + [anon_sym___leave] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + }, + [434] = { + [sym_identifier] = ACTIONS(1494), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [435] = { + [sym_attribute_declaration] = STATE(411), + [sym_compound_statement] = STATE(207), + [sym_attributed_statement] = STATE(205), + [sym_labeled_statement] = STATE(200), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(192), + [sym_switch_statement] = STATE(186), + [sym_case_statement] = STATE(206), + [sym_while_statement] = STATE(179), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(181), + [sym_return_statement] = STATE(183), + [sym_break_statement] = STATE(193), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(198), + [sym_seh_try_statement] = STATE(199), + [sym_seh_leave_statement] = STATE(202), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [436] = { [sym_identifier] = ACTIONS(1474), [aux_sym_preproc_include_token1] = ACTIONS(1474), [aux_sym_preproc_def_token1] = ACTIONS(1474), [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), [sym_preproc_directive] = ACTIONS(1474), @@ -63117,7 +64709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1474), [anon_sym___vectorcall] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), [anon_sym_signed] = ACTIONS(1474), [anon_sym_unsigned] = ACTIONS(1474), [anon_sym_long] = ACTIONS(1474), @@ -63185,245 +64776,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [437] = { + [sym_attribute_declaration] = STATE(411), + [sym_compound_statement] = STATE(211), + [sym_attributed_statement] = STATE(211), + [sym_labeled_statement] = STATE(211), + [sym_expression_statement] = STATE(211), + [sym_if_statement] = STATE(211), + [sym_switch_statement] = STATE(211), + [sym_case_statement] = STATE(211), + [sym_while_statement] = STATE(211), + [sym_do_statement] = STATE(211), + [sym_for_statement] = STATE(211), + [sym_return_statement] = STATE(211), + [sym_break_statement] = STATE(211), + [sym_continue_statement] = STATE(211), + [sym_goto_statement] = STATE(211), + [sym_seh_try_statement] = STATE(211), + [sym_seh_leave_statement] = STATE(211), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_identifier] = ACTIONS(1462), - [aux_sym_preproc_include_token1] = ACTIONS(1462), - [aux_sym_preproc_def_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token2] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), - [sym_preproc_directive] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym___extension__] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym___attribute__] = ACTIONS(1462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), - [anon_sym___declspec] = ACTIONS(1462), - [anon_sym___cdecl] = ACTIONS(1462), - [anon_sym___clrcall] = ACTIONS(1462), - [anon_sym___stdcall] = ACTIONS(1462), - [anon_sym___fastcall] = ACTIONS(1462), - [anon_sym___thiscall] = ACTIONS(1462), - [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_auto] = ACTIONS(1462), - [anon_sym_register] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym___inline] = ACTIONS(1462), - [anon_sym___inline__] = ACTIONS(1462), - [anon_sym___forceinline] = ACTIONS(1462), - [anon_sym_thread_local] = ACTIONS(1462), - [anon_sym___thread] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_constexpr] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [anon_sym_restrict] = ACTIONS(1462), - [anon_sym___restrict__] = ACTIONS(1462), - [anon_sym__Atomic] = ACTIONS(1462), - [anon_sym__Noreturn] = ACTIONS(1462), - [anon_sym_noreturn] = ACTIONS(1462), - [sym_primitive_type] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_goto] = ACTIONS(1462), - [anon_sym___try] = ACTIONS(1462), - [anon_sym___leave] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1462), - [anon_sym___alignof__] = ACTIONS(1462), - [anon_sym___alignof] = ACTIONS(1462), - [anon_sym__alignof] = ACTIONS(1462), - [anon_sym_alignof] = ACTIONS(1462), - [anon_sym__Alignof] = ACTIONS(1462), - [anon_sym_offsetof] = ACTIONS(1462), - [anon_sym__Generic] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1462), - [anon_sym___asm__] = ACTIONS(1462), - [sym_number_literal] = ACTIONS(1464), - [anon_sym_L_SQUOTE] = ACTIONS(1464), - [anon_sym_u_SQUOTE] = ACTIONS(1464), - [anon_sym_U_SQUOTE] = ACTIONS(1464), - [anon_sym_u8_SQUOTE] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_L_DQUOTE] = ACTIONS(1464), - [anon_sym_u_DQUOTE] = ACTIONS(1464), - [anon_sym_U_DQUOTE] = ACTIONS(1464), - [anon_sym_u8_DQUOTE] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [anon_sym_NULL] = ACTIONS(1462), - [anon_sym_nullptr] = ACTIONS(1462), + [438] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(414), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(1558), + [439] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(559), + [sym_attributed_statement] = STATE(559), + [sym_labeled_statement] = STATE(559), + [sym_expression_statement] = STATE(559), + [sym_if_statement] = STATE(559), + [sym_switch_statement] = STATE(559), + [sym_case_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_statement] = STATE(559), + [sym_for_statement] = STATE(559), + [sym_return_statement] = STATE(559), + [sym_break_statement] = STATE(559), + [sym_continue_statement] = STATE(559), + [sym_goto_statement] = STATE(559), + [sym_seh_try_statement] = STATE(559), + [sym_seh_leave_statement] = STATE(559), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63431,22 +65022,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63476,298 +65067,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [440] = { + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1530), + [aux_sym_preproc_def_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token1] = ACTIONS(1530), + [aux_sym_preproc_if_token2] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1530), + [sym_preproc_directive] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_TILDE] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym___extension__] = ACTIONS(1530), + [anon_sym_typedef] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym___attribute__] = ACTIONS(1530), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1532), + [anon_sym___declspec] = ACTIONS(1530), + [anon_sym___cdecl] = ACTIONS(1530), + [anon_sym___clrcall] = ACTIONS(1530), + [anon_sym___stdcall] = ACTIONS(1530), + [anon_sym___fastcall] = ACTIONS(1530), + [anon_sym___thiscall] = ACTIONS(1530), + [anon_sym___vectorcall] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_signed] = ACTIONS(1530), + [anon_sym_unsigned] = ACTIONS(1530), + [anon_sym_long] = ACTIONS(1530), + [anon_sym_short] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_auto] = ACTIONS(1530), + [anon_sym_register] = ACTIONS(1530), + [anon_sym_inline] = ACTIONS(1530), + [anon_sym___inline] = ACTIONS(1530), + [anon_sym___inline__] = ACTIONS(1530), + [anon_sym___forceinline] = ACTIONS(1530), + [anon_sym_thread_local] = ACTIONS(1530), + [anon_sym___thread] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_constexpr] = ACTIONS(1530), + [anon_sym_volatile] = ACTIONS(1530), + [anon_sym_restrict] = ACTIONS(1530), + [anon_sym___restrict__] = ACTIONS(1530), + [anon_sym__Atomic] = ACTIONS(1530), + [anon_sym__Noreturn] = ACTIONS(1530), + [anon_sym_noreturn] = ACTIONS(1530), + [sym_primitive_type] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1530), + [anon_sym_case] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_goto] = ACTIONS(1530), + [anon_sym___try] = ACTIONS(1530), + [anon_sym___leave] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1532), + [anon_sym_PLUS_PLUS] = ACTIONS(1532), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(1530), + [anon_sym___alignof] = ACTIONS(1530), + [anon_sym__alignof] = ACTIONS(1530), + [anon_sym_alignof] = ACTIONS(1530), + [anon_sym__Alignof] = ACTIONS(1530), + [anon_sym_offsetof] = ACTIONS(1530), + [anon_sym__Generic] = ACTIONS(1530), + [anon_sym_asm] = ACTIONS(1530), + [anon_sym___asm__] = ACTIONS(1530), + [sym_number_literal] = ACTIONS(1532), + [anon_sym_L_SQUOTE] = ACTIONS(1532), + [anon_sym_u_SQUOTE] = ACTIONS(1532), + [anon_sym_U_SQUOTE] = ACTIONS(1532), + [anon_sym_u8_SQUOTE] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_L_DQUOTE] = ACTIONS(1532), + [anon_sym_u_DQUOTE] = ACTIONS(1532), + [anon_sym_U_DQUOTE] = ACTIONS(1532), + [anon_sym_u8_DQUOTE] = ACTIONS(1532), + [anon_sym_DQUOTE] = ACTIONS(1532), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [anon_sym_NULL] = ACTIONS(1530), + [anon_sym_nullptr] = ACTIONS(1530), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [441] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(2403), + [sym_attributed_statement] = STATE(2403), + [sym_labeled_statement] = STATE(2403), + [sym_expression_statement] = STATE(2403), + [sym_if_statement] = STATE(2403), + [sym_switch_statement] = STATE(2403), + [sym_case_statement] = STATE(2403), + [sym_while_statement] = STATE(2403), + [sym_do_statement] = STATE(2403), + [sym_for_statement] = STATE(2403), + [sym_return_statement] = STATE(2403), + [sym_break_statement] = STATE(2403), + [sym_continue_statement] = STATE(2403), + [sym_goto_statement] = STATE(2403), + [sym_seh_try_statement] = STATE(2403), + [sym_seh_leave_statement] = STATE(2403), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym___try] = ACTIONS(1430), - [anon_sym___leave] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [442] = { + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token2] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1504), + [anon_sym_u_SQUOTE] = ACTIONS(1504), + [anon_sym_U_SQUOTE] = ACTIONS(1504), + [anon_sym_u8_SQUOTE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_L_DQUOTE] = ACTIONS(1504), + [anon_sym_u_DQUOTE] = ACTIONS(1504), + [anon_sym_U_DQUOTE] = ACTIONS(1504), + [anon_sym_u8_DQUOTE] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, - [430] = { + [443] = { + [sym_attribute_declaration] = STATE(443), + [sym_compound_statement] = STATE(219), + [sym_attributed_statement] = STATE(219), + [sym_labeled_statement] = STATE(219), + [sym_expression_statement] = STATE(219), + [sym_if_statement] = STATE(219), + [sym_switch_statement] = STATE(219), + [sym_case_statement] = STATE(219), + [sym_while_statement] = STATE(219), + [sym_do_statement] = STATE(219), + [sym_for_statement] = STATE(219), + [sym_return_statement] = STATE(219), + [sym_break_statement] = STATE(219), + [sym_continue_statement] = STATE(219), + [sym_goto_statement] = STATE(219), + [sym_seh_try_statement] = STATE(219), + [sym_seh_leave_statement] = STATE(219), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1737), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_goto] = ACTIONS(1761), + [anon_sym___try] = ACTIONS(1764), + [anon_sym___leave] = ACTIONS(1767), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), + [sym_comment] = ACTIONS(3), + }, + [444] = { + [sym_identifier] = ACTIONS(1490), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + }, + [445] = { + [sym_identifier] = ACTIONS(1498), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token2] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + }, + [446] = { + [sym_identifier] = ACTIONS(1490), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token2] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym___try] = ACTIONS(1490), + [anon_sym___leave] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), + [sym_comment] = ACTIONS(3), + }, + [447] = { [sym_identifier] = ACTIONS(1482), [aux_sym_preproc_include_token1] = ACTIONS(1482), [aux_sym_preproc_def_token1] = ACTIONS(1482), @@ -63849,454 +65828,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___asm__] = ACTIONS(1482), [sym_number_literal] = ACTIONS(1484), [anon_sym_L_SQUOTE] = ACTIONS(1484), - [anon_sym_u_SQUOTE] = ACTIONS(1484), - [anon_sym_U_SQUOTE] = ACTIONS(1484), - [anon_sym_u8_SQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [anon_sym_NULL] = ACTIONS(1482), - [anon_sym_nullptr] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - }, - [431] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym_seh_try_statement] = STATE(267), - [sym_seh_leave_statement] = STATE(267), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_switch] = ACTIONS(1842), - [anon_sym_case] = ACTIONS(1845), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1857), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1869), - [anon_sym___try] = ACTIONS(1872), - [anon_sym___leave] = ACTIONS(1875), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - }, - [432] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [433] = { - [sym_identifier] = ACTIONS(1474), - [aux_sym_preproc_include_token1] = ACTIONS(1474), - [aux_sym_preproc_def_token1] = ACTIONS(1474), - [aux_sym_preproc_if_token1] = ACTIONS(1474), - [aux_sym_preproc_if_token2] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), - [sym_preproc_directive] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym___extension__] = ACTIONS(1474), - [anon_sym_typedef] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym___attribute__] = ACTIONS(1474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), - [anon_sym___declspec] = ACTIONS(1474), - [anon_sym___cdecl] = ACTIONS(1474), - [anon_sym___clrcall] = ACTIONS(1474), - [anon_sym___stdcall] = ACTIONS(1474), - [anon_sym___fastcall] = ACTIONS(1474), - [anon_sym___thiscall] = ACTIONS(1474), - [anon_sym___vectorcall] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_signed] = ACTIONS(1474), - [anon_sym_unsigned] = ACTIONS(1474), - [anon_sym_long] = ACTIONS(1474), - [anon_sym_short] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_auto] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym___inline] = ACTIONS(1474), - [anon_sym___inline__] = ACTIONS(1474), - [anon_sym___forceinline] = ACTIONS(1474), - [anon_sym_thread_local] = ACTIONS(1474), - [anon_sym___thread] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_constexpr] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym___restrict__] = ACTIONS(1474), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym__Noreturn] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [sym_primitive_type] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1474), - [anon_sym_case] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_goto] = ACTIONS(1474), - [anon_sym___try] = ACTIONS(1474), - [anon_sym___leave] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_sizeof] = ACTIONS(1474), - [anon_sym___alignof__] = ACTIONS(1474), - [anon_sym___alignof] = ACTIONS(1474), - [anon_sym__alignof] = ACTIONS(1474), - [anon_sym_alignof] = ACTIONS(1474), - [anon_sym__Alignof] = ACTIONS(1474), - [anon_sym_offsetof] = ACTIONS(1474), - [anon_sym__Generic] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1474), - [anon_sym___asm__] = ACTIONS(1474), - [sym_number_literal] = ACTIONS(1476), - [anon_sym_L_SQUOTE] = ACTIONS(1476), - [anon_sym_u_SQUOTE] = ACTIONS(1476), - [anon_sym_U_SQUOTE] = ACTIONS(1476), - [anon_sym_u8_SQUOTE] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_L_DQUOTE] = ACTIONS(1476), - [anon_sym_u_DQUOTE] = ACTIONS(1476), - [anon_sym_U_DQUOTE] = ACTIONS(1476), - [anon_sym_u8_DQUOTE] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym_true] = ACTIONS(1474), - [sym_false] = ACTIONS(1474), - [anon_sym_NULL] = ACTIONS(1474), - [anon_sym_nullptr] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - }, - [434] = { - [sym_identifier] = ACTIONS(1486), - [aux_sym_preproc_include_token1] = ACTIONS(1486), - [aux_sym_preproc_def_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), - [sym_preproc_directive] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym___extension__] = ACTIONS(1486), - [anon_sym_typedef] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym___attribute__] = ACTIONS(1486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), - [anon_sym___declspec] = ACTIONS(1486), - [anon_sym___cdecl] = ACTIONS(1486), - [anon_sym___clrcall] = ACTIONS(1486), - [anon_sym___stdcall] = ACTIONS(1486), - [anon_sym___fastcall] = ACTIONS(1486), - [anon_sym___thiscall] = ACTIONS(1486), - [anon_sym___vectorcall] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_auto] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym___inline] = ACTIONS(1486), - [anon_sym___inline__] = ACTIONS(1486), - [anon_sym___forceinline] = ACTIONS(1486), - [anon_sym_thread_local] = ACTIONS(1486), - [anon_sym___thread] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_constexpr] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_restrict] = ACTIONS(1486), - [anon_sym___restrict__] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(1486), - [anon_sym__Noreturn] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [sym_primitive_type] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_goto] = ACTIONS(1486), - [anon_sym___try] = ACTIONS(1486), - [anon_sym___leave] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_sizeof] = ACTIONS(1486), - [anon_sym___alignof__] = ACTIONS(1486), - [anon_sym___alignof] = ACTIONS(1486), - [anon_sym__alignof] = ACTIONS(1486), - [anon_sym_alignof] = ACTIONS(1486), - [anon_sym__Alignof] = ACTIONS(1486), - [anon_sym_offsetof] = ACTIONS(1486), - [anon_sym__Generic] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1486), - [anon_sym___asm__] = ACTIONS(1486), - [sym_number_literal] = ACTIONS(1488), - [anon_sym_L_SQUOTE] = ACTIONS(1488), - [anon_sym_u_SQUOTE] = ACTIONS(1488), - [anon_sym_U_SQUOTE] = ACTIONS(1488), - [anon_sym_u8_SQUOTE] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [anon_sym_NULL] = ACTIONS(1486), - [anon_sym_nullptr] = ACTIONS(1486), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(368), - [sym_attributed_statement] = STATE(368), - [sym_labeled_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_if_statement] = STATE(368), - [sym_switch_statement] = STATE(368), - [sym_case_statement] = STATE(368), - [sym_while_statement] = STATE(368), - [sym_do_statement] = STATE(368), - [sym_for_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_break_statement] = STATE(368), - [sym_continue_statement] = STATE(368), - [sym_goto_statement] = STATE(368), - [sym_seh_try_statement] = STATE(368), - [sym_seh_leave_statement] = STATE(368), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [448] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(2395), + [sym_attributed_statement] = STATE(2395), + [sym_labeled_statement] = STATE(2395), + [sym_expression_statement] = STATE(2395), + [sym_if_statement] = STATE(2395), + [sym_switch_statement] = STATE(2395), + [sym_case_statement] = STATE(2395), + [sym_while_statement] = STATE(2395), + [sym_do_statement] = STATE(2395), + [sym_for_statement] = STATE(2395), + [sym_return_statement] = STATE(2395), + [sym_break_statement] = STATE(2395), + [sym_continue_statement] = STATE(2395), + [sym_goto_statement] = STATE(2395), + [sym_seh_try_statement] = STATE(2395), + [sym_seh_leave_statement] = STATE(2395), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64305,20 +65896,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -64349,51 +65940,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(294), - [sym_attributed_statement] = STATE(294), - [sym_labeled_statement] = STATE(294), - [sym_expression_statement] = STATE(294), - [sym_if_statement] = STATE(294), - [sym_switch_statement] = STATE(294), - [sym_case_statement] = STATE(294), - [sym_while_statement] = STATE(294), - [sym_do_statement] = STATE(294), - [sym_for_statement] = STATE(294), - [sym_return_statement] = STATE(294), - [sym_break_statement] = STATE(294), - [sym_continue_statement] = STATE(294), - [sym_goto_statement] = STATE(294), - [sym_seh_try_statement] = STATE(294), - [sym_seh_leave_statement] = STATE(294), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1780), + [449] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(2387), + [sym_attributed_statement] = STATE(2387), + [sym_labeled_statement] = STATE(2387), + [sym_expression_statement] = STATE(2387), + [sym_if_statement] = STATE(2387), + [sym_switch_statement] = STATE(2387), + [sym_case_statement] = STATE(2387), + [sym_while_statement] = STATE(2387), + [sym_do_statement] = STATE(2387), + [sym_for_statement] = STATE(2387), + [sym_return_statement] = STATE(2387), + [sym_break_statement] = STATE(2387), + [sym_continue_statement] = STATE(2387), + [sym_goto_statement] = STATE(2387), + [sym_seh_try_statement] = STATE(2387), + [sym_seh_leave_statement] = STATE(2387), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64401,22 +65992,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64446,12 +66037,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [437] = { + [450] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [453] = { [sym_identifier] = ACTIONS(1450), [aux_sym_preproc_include_token1] = ACTIONS(1450), [aux_sym_preproc_def_token1] = ACTIONS(1450), [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token2] = ACTIONS(1450), [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), [sym_preproc_directive] = ACTIONS(1450), @@ -64476,6 +66357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1450), [anon_sym___vectorcall] = ACTIONS(1450), [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), [anon_sym_signed] = ACTIONS(1450), [anon_sym_unsigned] = ACTIONS(1450), [anon_sym_long] = ACTIONS(1450), @@ -64543,148 +66425,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token2] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [454] = { + [sym_attribute_declaration] = STATE(473), + [sym_compound_statement] = STATE(350), + [sym_attributed_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_expression_statement] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_case_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(350), + [sym_seh_try_statement] = STATE(350), + [sym_seh_leave_statement] = STATE(350), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [455] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(243), + [sym_attributed_statement] = STATE(243), + [sym_labeled_statement] = STATE(243), + [sym_expression_statement] = STATE(243), + [sym_if_statement] = STATE(243), + [sym_switch_statement] = STATE(243), + [sym_case_statement] = STATE(243), + [sym_while_statement] = STATE(243), + [sym_do_statement] = STATE(243), + [sym_for_statement] = STATE(243), + [sym_return_statement] = STATE(243), + [sym_break_statement] = STATE(243), + [sym_continue_statement] = STATE(243), + [sym_goto_statement] = STATE(243), + [sym_seh_try_statement] = STATE(243), + [sym_seh_leave_statement] = STATE(243), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(288), - [sym_attributed_statement] = STATE(288), - [sym_labeled_statement] = STATE(288), - [sym_expression_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_switch_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_do_statement] = STATE(288), - [sym_for_statement] = STATE(288), - [sym_return_statement] = STATE(288), - [sym_break_statement] = STATE(288), - [sym_continue_statement] = STATE(288), - [sym_goto_statement] = STATE(288), - [sym_seh_try_statement] = STATE(288), - [sym_seh_leave_statement] = STATE(288), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1780), + [456] = { + [sym_identifier] = ACTIONS(1498), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym___try] = ACTIONS(1498), + [anon_sym___leave] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(322), + [sym_attributed_statement] = STATE(322), + [sym_labeled_statement] = STATE(322), + [sym_expression_statement] = STATE(322), + [sym_if_statement] = STATE(322), + [sym_switch_statement] = STATE(322), + [sym_case_statement] = STATE(322), + [sym_while_statement] = STATE(322), + [sym_do_statement] = STATE(322), + [sym_for_statement] = STATE(322), + [sym_return_statement] = STATE(322), + [sym_break_statement] = STATE(322), + [sym_continue_statement] = STATE(322), + [sym_goto_statement] = STATE(322), + [sym_seh_try_statement] = STATE(322), + [sym_seh_leave_statement] = STATE(322), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64692,22 +66768,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64737,51 +66813,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(230), - [sym_attributed_statement] = STATE(230), - [sym_labeled_statement] = STATE(230), - [sym_expression_statement] = STATE(230), - [sym_if_statement] = STATE(230), - [sym_switch_statement] = STATE(230), - [sym_case_statement] = STATE(230), - [sym_while_statement] = STATE(230), - [sym_do_statement] = STATE(230), - [sym_for_statement] = STATE(230), - [sym_return_statement] = STATE(230), - [sym_break_statement] = STATE(230), - [sym_continue_statement] = STATE(230), - [sym_goto_statement] = STATE(230), - [sym_seh_try_statement] = STATE(230), - [sym_seh_leave_statement] = STATE(230), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1780), + [458] = { + [sym_attribute_declaration] = STATE(411), + [sym_compound_statement] = STATE(189), + [sym_attributed_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_case_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym_seh_try_statement] = STATE(189), + [sym_seh_leave_statement] = STATE(189), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1562), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64789,22 +66865,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64834,51 +66910,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(91), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_case_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym_seh_try_statement] = STATE(91), - [sym_seh_leave_statement] = STATE(91), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1556), + [459] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(306), + [sym_attributed_statement] = STATE(306), + [sym_labeled_statement] = STATE(306), + [sym_expression_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_switch_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_do_statement] = STATE(306), + [sym_for_statement] = STATE(306), + [sym_return_statement] = STATE(306), + [sym_break_statement] = STATE(306), + [sym_continue_statement] = STATE(306), + [sym_goto_statement] = STATE(306), + [sym_seh_try_statement] = STATE(306), + [sym_seh_leave_statement] = STATE(306), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64886,22 +66962,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64931,148 +67007,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [460] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_attribute_declaration] = STATE(391), - [sym_compound_statement] = STATE(166), - [sym_attributed_statement] = STATE(166), - [sym_labeled_statement] = STATE(166), - [sym_expression_statement] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_switch_statement] = STATE(166), - [sym_case_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_do_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_return_statement] = STATE(166), - [sym_break_statement] = STATE(166), - [sym_continue_statement] = STATE(166), - [sym_goto_statement] = STATE(166), - [sym_seh_try_statement] = STATE(166), - [sym_seh_leave_statement] = STATE(166), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(1546), + [461] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(90), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym_seh_try_statement] = STATE(90), + [sym_seh_leave_statement] = STATE(90), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1720), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65080,22 +67156,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65125,51 +67201,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [444] = { - [sym_attribute_declaration] = STATE(448), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(104), - [sym_labeled_statement] = STATE(103), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(100), - [sym_case_statement] = STATE(99), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(96), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(119), - [sym_seh_try_statement] = STATE(127), - [sym_seh_leave_statement] = STATE(128), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(448), - [sym_identifier] = ACTIONS(1556), + [462] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(110), + [sym_attributed_statement] = STATE(110), + [sym_labeled_statement] = STATE(110), + [sym_expression_statement] = STATE(110), + [sym_if_statement] = STATE(110), + [sym_switch_statement] = STATE(110), + [sym_case_statement] = STATE(110), + [sym_while_statement] = STATE(110), + [sym_do_statement] = STATE(110), + [sym_for_statement] = STATE(110), + [sym_return_statement] = STATE(110), + [sym_break_statement] = STATE(110), + [sym_continue_statement] = STATE(110), + [sym_goto_statement] = STATE(110), + [sym_seh_try_statement] = STATE(110), + [sym_seh_leave_statement] = STATE(110), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1720), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65178,7 +67254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_if] = ACTIONS(131), [anon_sym_switch] = ACTIONS(133), @@ -65222,51 +67298,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_attribute_declaration] = STATE(391), - [sym_compound_statement] = STATE(203), - [sym_attributed_statement] = STATE(202), - [sym_labeled_statement] = STATE(201), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(197), - [sym_switch_statement] = STATE(191), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(167), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(187), - [sym_return_statement] = STATE(186), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(177), - [sym_seh_leave_statement] = STATE(208), - [sym__expression] = STATE(1242), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2212), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(391), - [sym_identifier] = ACTIONS(1546), + [463] = { + [sym_attribute_declaration] = STATE(423), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1574), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [sym_attribute_declaration] = STATE(411), + [sym_compound_statement] = STATE(171), + [sym_attributed_statement] = STATE(171), + [sym_labeled_statement] = STATE(171), + [sym_expression_statement] = STATE(171), + [sym_if_statement] = STATE(171), + [sym_switch_statement] = STATE(171), + [sym_case_statement] = STATE(171), + [sym_while_statement] = STATE(171), + [sym_do_statement] = STATE(171), + [sym_for_statement] = STATE(171), + [sym_return_statement] = STATE(171), + [sym_break_statement] = STATE(171), + [sym_continue_statement] = STATE(171), + [sym_goto_statement] = STATE(171), + [sym_seh_try_statement] = STATE(171), + [sym_seh_leave_statement] = STATE(171), + [sym__expression] = STATE(1342), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2315), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(411), + [sym_identifier] = ACTIONS(1562), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65275,7 +67642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -65319,633 +67686,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_identifier] = ACTIONS(1462), - [aux_sym_preproc_include_token1] = ACTIONS(1462), - [aux_sym_preproc_def_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), - [sym_preproc_directive] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym___extension__] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym___attribute__] = ACTIONS(1462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), - [anon_sym___declspec] = ACTIONS(1462), - [anon_sym___cdecl] = ACTIONS(1462), - [anon_sym___clrcall] = ACTIONS(1462), - [anon_sym___stdcall] = ACTIONS(1462), - [anon_sym___fastcall] = ACTIONS(1462), - [anon_sym___thiscall] = ACTIONS(1462), - [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_auto] = ACTIONS(1462), - [anon_sym_register] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym___inline] = ACTIONS(1462), - [anon_sym___inline__] = ACTIONS(1462), - [anon_sym___forceinline] = ACTIONS(1462), - [anon_sym_thread_local] = ACTIONS(1462), - [anon_sym___thread] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_constexpr] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [anon_sym_restrict] = ACTIONS(1462), - [anon_sym___restrict__] = ACTIONS(1462), - [anon_sym__Atomic] = ACTIONS(1462), - [anon_sym__Noreturn] = ACTIONS(1462), - [anon_sym_noreturn] = ACTIONS(1462), - [sym_primitive_type] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_goto] = ACTIONS(1462), - [anon_sym___try] = ACTIONS(1462), - [anon_sym___leave] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1462), - [anon_sym___alignof__] = ACTIONS(1462), - [anon_sym___alignof] = ACTIONS(1462), - [anon_sym__alignof] = ACTIONS(1462), - [anon_sym_alignof] = ACTIONS(1462), - [anon_sym__Alignof] = ACTIONS(1462), - [anon_sym_offsetof] = ACTIONS(1462), - [anon_sym__Generic] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1462), - [anon_sym___asm__] = ACTIONS(1462), - [sym_number_literal] = ACTIONS(1464), - [anon_sym_L_SQUOTE] = ACTIONS(1464), - [anon_sym_u_SQUOTE] = ACTIONS(1464), - [anon_sym_U_SQUOTE] = ACTIONS(1464), - [anon_sym_u8_SQUOTE] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_L_DQUOTE] = ACTIONS(1464), - [anon_sym_u_DQUOTE] = ACTIONS(1464), - [anon_sym_U_DQUOTE] = ACTIONS(1464), - [anon_sym_u8_DQUOTE] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [anon_sym_NULL] = ACTIONS(1462), - [anon_sym_nullptr] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - }, - [447] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token2] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(133), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym__expression] = STATE(1263), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2260), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_identifier] = ACTIONS(1486), - [aux_sym_preproc_include_token1] = ACTIONS(1486), - [aux_sym_preproc_def_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token2] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), - [sym_preproc_directive] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym___extension__] = ACTIONS(1486), - [anon_sym_typedef] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym___attribute__] = ACTIONS(1486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), - [anon_sym___declspec] = ACTIONS(1486), - [anon_sym___cdecl] = ACTIONS(1486), - [anon_sym___clrcall] = ACTIONS(1486), - [anon_sym___stdcall] = ACTIONS(1486), - [anon_sym___fastcall] = ACTIONS(1486), - [anon_sym___thiscall] = ACTIONS(1486), - [anon_sym___vectorcall] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_auto] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym___inline] = ACTIONS(1486), - [anon_sym___inline__] = ACTIONS(1486), - [anon_sym___forceinline] = ACTIONS(1486), - [anon_sym_thread_local] = ACTIONS(1486), - [anon_sym___thread] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_constexpr] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_restrict] = ACTIONS(1486), - [anon_sym___restrict__] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(1486), - [anon_sym__Noreturn] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [sym_primitive_type] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_goto] = ACTIONS(1486), - [anon_sym___try] = ACTIONS(1486), - [anon_sym___leave] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_sizeof] = ACTIONS(1486), - [anon_sym___alignof__] = ACTIONS(1486), - [anon_sym___alignof] = ACTIONS(1486), - [anon_sym__alignof] = ACTIONS(1486), - [anon_sym_alignof] = ACTIONS(1486), - [anon_sym__Alignof] = ACTIONS(1486), - [anon_sym_offsetof] = ACTIONS(1486), - [anon_sym__Generic] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1486), - [anon_sym___asm__] = ACTIONS(1486), - [sym_number_literal] = ACTIONS(1488), - [anon_sym_L_SQUOTE] = ACTIONS(1488), - [anon_sym_u_SQUOTE] = ACTIONS(1488), - [anon_sym_U_SQUOTE] = ACTIONS(1488), - [anon_sym_u8_SQUOTE] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [anon_sym_NULL] = ACTIONS(1486), - [anon_sym_nullptr] = ACTIONS(1486), + [467] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_attribute_declaration] = STATE(450), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(450), - [sym_identifier] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_switch] = ACTIONS(1744), - [anon_sym_case] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_goto] = ACTIONS(1771), - [anon_sym___try] = ACTIONS(1896), - [anon_sym___leave] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1623), - [anon_sym_PLUS_PLUS] = ACTIONS(1623), - [anon_sym_sizeof] = ACTIONS(1626), - [anon_sym___alignof__] = ACTIONS(1629), - [anon_sym___alignof] = ACTIONS(1629), - [anon_sym__alignof] = ACTIONS(1629), - [anon_sym_alignof] = ACTIONS(1629), - [anon_sym__Alignof] = ACTIONS(1629), - [anon_sym_offsetof] = ACTIONS(1632), - [anon_sym__Generic] = ACTIONS(1635), - [anon_sym_asm] = ACTIONS(1638), - [anon_sym___asm__] = ACTIONS(1638), - [sym_number_literal] = ACTIONS(1641), - [anon_sym_L_SQUOTE] = ACTIONS(1644), - [anon_sym_u_SQUOTE] = ACTIONS(1644), - [anon_sym_U_SQUOTE] = ACTIONS(1644), - [anon_sym_u8_SQUOTE] = ACTIONS(1644), - [anon_sym_SQUOTE] = ACTIONS(1644), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1650), - [sym_false] = ACTIONS(1650), - [anon_sym_NULL] = ACTIONS(1653), - [anon_sym_nullptr] = ACTIONS(1653), + [468] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [451] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), + [469] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [452] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(267), - [sym_attributed_statement] = STATE(267), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(267), - [sym_if_statement] = STATE(267), - [sym_switch_statement] = STATE(267), - [sym_case_statement] = STATE(267), - [sym_while_statement] = STATE(267), - [sym_do_statement] = STATE(267), - [sym_for_statement] = STATE(267), - [sym_return_statement] = STATE(267), - [sym_break_statement] = STATE(267), - [sym_continue_statement] = STATE(267), - [sym_goto_statement] = STATE(267), - [sym_seh_try_statement] = STATE(267), - [sym_seh_leave_statement] = STATE(267), - [sym__expression] = STATE(1268), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2092), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1780), + [470] = { + [sym_attribute_declaration] = STATE(488), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65953,22 +68029,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(543), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(555), - [anon_sym_case] = ACTIONS(557), - [anon_sym_default] = ACTIONS(559), - [anon_sym_while] = ACTIONS(561), - [anon_sym_do] = ACTIONS(563), - [anon_sym_for] = ACTIONS(565), - [anon_sym_return] = ACTIONS(567), - [anon_sym_break] = ACTIONS(569), - [anon_sym_continue] = ACTIONS(571), - [anon_sym_goto] = ACTIONS(573), - [anon_sym___try] = ACTIONS(575), - [anon_sym___leave] = ACTIONS(577), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65998,298 +68074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token2] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym___try] = ACTIONS(1446), - [anon_sym___leave] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [454] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [455] = { - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token2] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym___try] = ACTIONS(1442), - [anon_sym___leave] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), - [sym_comment] = ACTIONS(3), - }, - [456] = { + [471] = { [sym_identifier] = ACTIONS(1438), [aux_sym_preproc_include_token1] = ACTIONS(1438), [aux_sym_preproc_def_token1] = ACTIONS(1438), @@ -66386,51 +68171,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(529), - [sym_attributed_statement] = STATE(529), - [sym_labeled_statement] = STATE(529), - [sym_expression_statement] = STATE(529), - [sym_if_statement] = STATE(529), - [sym_switch_statement] = STATE(529), - [sym_case_statement] = STATE(529), - [sym_while_statement] = STATE(529), - [sym_do_statement] = STATE(529), - [sym_for_statement] = STATE(529), - [sym_return_statement] = STATE(529), - [sym_break_statement] = STATE(529), - [sym_continue_statement] = STATE(529), - [sym_goto_statement] = STATE(529), - [sym_seh_try_statement] = STATE(529), - [sym_seh_leave_statement] = STATE(529), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [472] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(113), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym_seh_try_statement] = STATE(113), + [sym_seh_leave_statement] = STATE(113), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1720), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66438,22 +68223,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -66483,342 +68268,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym___try] = ACTIONS(1454), - [anon_sym___leave] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), - [sym_comment] = ACTIONS(3), - }, - [459] = { - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym___try] = ACTIONS(1434), - [anon_sym___leave] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - }, - [460] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [473] = { + [sym_attribute_declaration] = STATE(473), + [sym_compound_statement] = STATE(350), + [sym_attributed_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_expression_statement] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_case_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(350), + [sym_seh_try_statement] = STATE(350), + [sym_seh_leave_statement] = STATE(350), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1790), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_goto] = ACTIONS(1811), + [anon_sym___try] = ACTIONS(1814), + [anon_sym___leave] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_attribute_declaration] = STATE(390), - [sym_compound_statement] = STATE(266), - [sym_attributed_statement] = STATE(266), - [sym_labeled_statement] = STATE(266), - [sym_expression_statement] = STATE(266), - [sym_if_statement] = STATE(266), - [sym_switch_statement] = STATE(266), - [sym_case_statement] = STATE(266), - [sym_while_statement] = STATE(266), - [sym_do_statement] = STATE(266), - [sym_for_statement] = STATE(266), - [sym_return_statement] = STATE(266), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(266), - [sym_goto_statement] = STATE(266), - [sym_seh_try_statement] = STATE(266), - [sym_seh_leave_statement] = STATE(266), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(1656), + [474] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(304), + [sym_attributed_statement] = STATE(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -66826,22 +68417,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -66871,12 +68462,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [462] = { + [475] = { + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym___try] = ACTIONS(1526), + [anon_sym___leave] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + }, + [477] = { + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym___try] = ACTIONS(1522), + [anon_sym___leave] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [478] = { + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym___try] = ACTIONS(1518), + [anon_sym___leave] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [sym__expression] = STATE(996), + [sym__expression_not_binary] = STATE(1073), + [sym__string] = STATE(1073), + [sym_conditional_expression] = STATE(1073), + [sym_assignment_expression] = STATE(1073), + [sym_pointer_expression] = STATE(1073), + [sym_unary_expression] = STATE(1073), + [sym_binary_expression] = STATE(1073), + [sym_update_expression] = STATE(1073), + [sym_cast_expression] = STATE(1073), + [sym_sizeof_expression] = STATE(1073), + [sym_alignof_expression] = STATE(1073), + [sym_offsetof_expression] = STATE(1073), + [sym_generic_expression] = STATE(1073), + [sym_subscript_expression] = STATE(1073), + [sym_call_expression] = STATE(1073), + [sym_gnu_asm_expression] = STATE(1073), + [sym_field_expression] = STATE(1073), + [sym_compound_literal_expression] = STATE(1073), + [sym_parenthesized_expression] = STATE(1073), + [sym_initializer_list] = STATE(1053), + [sym_char_literal] = STATE(1073), + [sym_concatenated_string] = STATE(1073), + [sym_string_literal] = STATE(910), + [sym_null] = STATE(1073), + [sym_identifier] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1820), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1826), + [anon_sym___alignof__] = ACTIONS(1828), + [anon_sym___alignof] = ACTIONS(1828), + [anon_sym__alignof] = ACTIONS(1828), + [anon_sym_alignof] = ACTIONS(1828), + [anon_sym__Alignof] = ACTIONS(1828), + [anon_sym_offsetof] = ACTIONS(1830), + [anon_sym__Generic] = ACTIONS(1832), + [anon_sym_asm] = ACTIONS(1834), + [anon_sym___asm__] = ACTIONS(1834), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1836), + [anon_sym_L_SQUOTE] = ACTIONS(1838), + [anon_sym_u_SQUOTE] = ACTIONS(1838), + [anon_sym_U_SQUOTE] = ACTIONS(1838), + [anon_sym_u8_SQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_L_DQUOTE] = ACTIONS(1840), + [anon_sym_u_DQUOTE] = ACTIONS(1840), + [anon_sym_U_DQUOTE] = ACTIONS(1840), + [anon_sym_u8_DQUOTE] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [anon_sym_NULL] = ACTIONS(1844), + [anon_sym_nullptr] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + }, + [480] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [481] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [482] = { [sym_identifier] = ACTIONS(1434), [aux_sym_preproc_include_token1] = ACTIONS(1434), [aux_sym_preproc_def_token1] = ACTIONS(1434), [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token2] = ACTIONS(1434), [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), [sym_preproc_directive] = ACTIONS(1434), @@ -66901,6 +69170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1434), [anon_sym___vectorcall] = ACTIONS(1434), [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), [anon_sym_signed] = ACTIONS(1434), [anon_sym_unsigned] = ACTIONS(1434), [anon_sym_long] = ACTIONS(1434), @@ -66968,245 +69238,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym_identifier] = ACTIONS(1512), - [aux_sym_preproc_include_token1] = ACTIONS(1512), - [aux_sym_preproc_def_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), - [sym_preproc_directive] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym___extension__] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), - [anon_sym___declspec] = ACTIONS(1512), - [anon_sym___cdecl] = ACTIONS(1512), - [anon_sym___clrcall] = ACTIONS(1512), - [anon_sym___stdcall] = ACTIONS(1512), - [anon_sym___fastcall] = ACTIONS(1512), - [anon_sym___thiscall] = ACTIONS(1512), - [anon_sym___vectorcall] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1512), - [anon_sym_unsigned] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_auto] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym___inline] = ACTIONS(1512), - [anon_sym___inline__] = ACTIONS(1512), - [anon_sym___forceinline] = ACTIONS(1512), - [anon_sym_thread_local] = ACTIONS(1512), - [anon_sym___thread] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_constexpr] = ACTIONS(1512), - [anon_sym_volatile] = ACTIONS(1512), - [anon_sym_restrict] = ACTIONS(1512), - [anon_sym___restrict__] = ACTIONS(1512), - [anon_sym__Atomic] = ACTIONS(1512), - [anon_sym__Noreturn] = ACTIONS(1512), - [anon_sym_noreturn] = ACTIONS(1512), - [sym_primitive_type] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_goto] = ACTIONS(1512), - [anon_sym___try] = ACTIONS(1512), - [anon_sym___leave] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1512), - [anon_sym___alignof__] = ACTIONS(1512), - [anon_sym___alignof] = ACTIONS(1512), - [anon_sym__alignof] = ACTIONS(1512), - [anon_sym_alignof] = ACTIONS(1512), - [anon_sym__Alignof] = ACTIONS(1512), - [anon_sym_offsetof] = ACTIONS(1512), - [anon_sym__Generic] = ACTIONS(1512), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym___asm__] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1514), - [anon_sym_L_SQUOTE] = ACTIONS(1514), - [anon_sym_u_SQUOTE] = ACTIONS(1514), - [anon_sym_U_SQUOTE] = ACTIONS(1514), - [anon_sym_u8_SQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1512), - [sym_false] = ACTIONS(1512), - [anon_sym_NULL] = ACTIONS(1512), - [anon_sym_nullptr] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - }, - [464] = { - [sym_identifier] = ACTIONS(1508), - [aux_sym_preproc_include_token1] = ACTIONS(1508), - [aux_sym_preproc_def_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token2] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), - [sym_preproc_directive] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym___extension__] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym___attribute__] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), - [anon_sym___declspec] = ACTIONS(1508), - [anon_sym___cdecl] = ACTIONS(1508), - [anon_sym___clrcall] = ACTIONS(1508), - [anon_sym___stdcall] = ACTIONS(1508), - [anon_sym___fastcall] = ACTIONS(1508), - [anon_sym___thiscall] = ACTIONS(1508), - [anon_sym___vectorcall] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1508), - [anon_sym_unsigned] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_auto] = ACTIONS(1508), - [anon_sym_register] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym___inline] = ACTIONS(1508), - [anon_sym___inline__] = ACTIONS(1508), - [anon_sym___forceinline] = ACTIONS(1508), - [anon_sym_thread_local] = ACTIONS(1508), - [anon_sym___thread] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_constexpr] = ACTIONS(1508), - [anon_sym_volatile] = ACTIONS(1508), - [anon_sym_restrict] = ACTIONS(1508), - [anon_sym___restrict__] = ACTIONS(1508), - [anon_sym__Atomic] = ACTIONS(1508), - [anon_sym__Noreturn] = ACTIONS(1508), - [anon_sym_noreturn] = ACTIONS(1508), - [sym_primitive_type] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_goto] = ACTIONS(1508), - [anon_sym___try] = ACTIONS(1508), - [anon_sym___leave] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1508), - [anon_sym___alignof__] = ACTIONS(1508), - [anon_sym___alignof] = ACTIONS(1508), - [anon_sym__alignof] = ACTIONS(1508), - [anon_sym_alignof] = ACTIONS(1508), - [anon_sym__Alignof] = ACTIONS(1508), - [anon_sym_offsetof] = ACTIONS(1508), - [anon_sym__Generic] = ACTIONS(1508), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym___asm__] = ACTIONS(1508), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1510), - [anon_sym_u_SQUOTE] = ACTIONS(1510), - [anon_sym_U_SQUOTE] = ACTIONS(1510), - [anon_sym_u8_SQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_L_DQUOTE] = ACTIONS(1510), - [anon_sym_u_DQUOTE] = ACTIONS(1510), - [anon_sym_U_DQUOTE] = ACTIONS(1510), - [anon_sym_u8_DQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [anon_sym_NULL] = ACTIONS(1508), - [anon_sym_nullptr] = ACTIONS(1508), + [483] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(368), - [sym_attributed_statement] = STATE(368), - [sym_labeled_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_if_statement] = STATE(368), - [sym_switch_statement] = STATE(368), - [sym_case_statement] = STATE(368), - [sym_while_statement] = STATE(368), - [sym_do_statement] = STATE(368), - [sym_for_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_break_statement] = STATE(368), - [sym_continue_statement] = STATE(368), - [sym_goto_statement] = STATE(368), + [484] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(313), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(316), + [sym_if_statement] = STATE(317), + [sym_switch_statement] = STATE(318), + [sym_case_statement] = STATE(330), + [sym_while_statement] = STATE(331), + [sym_do_statement] = STATE(336), + [sym_for_statement] = STATE(338), + [sym_return_statement] = STATE(346), + [sym_break_statement] = STATE(347), + [sym_continue_statement] = STATE(365), + [sym_goto_statement] = STATE(367), [sym_seh_try_statement] = STATE(368), - [sym_seh_leave_statement] = STATE(368), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1558), + [sym_seh_leave_statement] = STATE(369), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67214,22 +69387,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -67259,51 +69432,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(284), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym_seh_try_statement] = STATE(284), - [sym_seh_leave_statement] = STATE(284), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [485] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(304), + [sym_attributed_statement] = STATE(304), + [sym_labeled_statement] = STATE(304), + [sym_expression_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_switch_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_do_statement] = STATE(304), + [sym_for_statement] = STATE(304), + [sym_return_statement] = STATE(304), + [sym_break_statement] = STATE(304), + [sym_continue_statement] = STATE(304), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(304), + [sym_seh_leave_statement] = STATE(304), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67312,20 +69485,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym___try] = ACTIONS(1284), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -67356,51 +69529,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [467] = { - [sym_attribute_declaration] = STATE(390), - [sym_compound_statement] = STATE(270), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(275), - [sym_expression_statement] = STATE(281), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(283), - [sym_case_statement] = STATE(289), - [sym_while_statement] = STATE(295), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(300), - [sym_return_statement] = STATE(301), - [sym_break_statement] = STATE(302), - [sym_continue_statement] = STATE(303), - [sym_goto_statement] = STATE(304), - [sym_seh_try_statement] = STATE(305), - [sym_seh_leave_statement] = STATE(306), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(390), - [sym_identifier] = ACTIONS(1656), + [486] = { + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym___try] = ACTIONS(1514), + [anon_sym___leave] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + }, + [487] = { + [sym_attribute_declaration] = STATE(463), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(313), + [sym_labeled_statement] = STATE(314), + [sym_expression_statement] = STATE(316), + [sym_if_statement] = STATE(317), + [sym_switch_statement] = STATE(318), + [sym_case_statement] = STATE(330), + [sym_while_statement] = STATE(331), + [sym_do_statement] = STATE(336), + [sym_for_statement] = STATE(338), + [sym_return_statement] = STATE(346), + [sym_break_statement] = STATE(347), + [sym_continue_statement] = STATE(365), + [sym_goto_statement] = STATE(367), + [sym_seh_try_statement] = STATE(368), + [sym_seh_leave_statement] = STATE(369), + [sym__expression] = STATE(1348), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2343), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(1574), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67408,22 +69678,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(1101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1103), + [anon_sym___leave] = ACTIONS(1105), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -67453,245 +69723,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [468] = { - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token2] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym___extension__] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), - [anon_sym___declspec] = ACTIONS(1466), - [anon_sym___cdecl] = ACTIONS(1466), - [anon_sym___clrcall] = ACTIONS(1466), - [anon_sym___stdcall] = ACTIONS(1466), - [anon_sym___fastcall] = ACTIONS(1466), - [anon_sym___thiscall] = ACTIONS(1466), - [anon_sym___vectorcall] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_signed] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym___inline] = ACTIONS(1466), - [anon_sym___inline__] = ACTIONS(1466), - [anon_sym___forceinline] = ACTIONS(1466), - [anon_sym_thread_local] = ACTIONS(1466), - [anon_sym___thread] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_constexpr] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [anon_sym___restrict__] = ACTIONS(1466), - [anon_sym__Atomic] = ACTIONS(1466), - [anon_sym__Noreturn] = ACTIONS(1466), - [anon_sym_noreturn] = ACTIONS(1466), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym___try] = ACTIONS(1466), - [anon_sym___leave] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1466), - [anon_sym__Generic] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1466), - [anon_sym___asm__] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym_u_SQUOTE] = ACTIONS(1468), - [anon_sym_U_SQUOTE] = ACTIONS(1468), - [anon_sym_u8_SQUOTE] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_u_DQUOTE] = ACTIONS(1468), - [anon_sym_U_DQUOTE] = ACTIONS(1468), - [anon_sym_u8_DQUOTE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_NULL] = ACTIONS(1466), - [anon_sym_nullptr] = ACTIONS(1466), + [488] = { + [sym_attribute_declaration] = STATE(488), + [sym_compound_statement] = STATE(301), + [sym_attributed_statement] = STATE(301), + [sym_labeled_statement] = STATE(301), + [sym_expression_statement] = STATE(301), + [sym_if_statement] = STATE(301), + [sym_switch_statement] = STATE(301), + [sym_case_statement] = STATE(301), + [sym_while_statement] = STATE(301), + [sym_do_statement] = STATE(301), + [sym_for_statement] = STATE(301), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(301), + [sym_continue_statement] = STATE(301), + [sym_goto_statement] = STATE(301), + [sym_seh_try_statement] = STATE(301), + [sym_seh_leave_statement] = STATE(301), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1846), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym___try] = ACTIONS(1864), + [anon_sym___leave] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [469] = { - [sym_identifier] = ACTIONS(1450), - [aux_sym_preproc_include_token1] = ACTIONS(1450), - [aux_sym_preproc_def_token1] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), - [sym_preproc_directive] = ACTIONS(1450), - [anon_sym_LPAREN2] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym___extension__] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym___attribute__] = ACTIONS(1450), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), - [anon_sym___declspec] = ACTIONS(1450), - [anon_sym___cdecl] = ACTIONS(1450), - [anon_sym___clrcall] = ACTIONS(1450), - [anon_sym___stdcall] = ACTIONS(1450), - [anon_sym___fastcall] = ACTIONS(1450), - [anon_sym___thiscall] = ACTIONS(1450), - [anon_sym___vectorcall] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_signed] = ACTIONS(1450), - [anon_sym_unsigned] = ACTIONS(1450), - [anon_sym_long] = ACTIONS(1450), - [anon_sym_short] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_auto] = ACTIONS(1450), - [anon_sym_register] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym___inline] = ACTIONS(1450), - [anon_sym___inline__] = ACTIONS(1450), - [anon_sym___forceinline] = ACTIONS(1450), - [anon_sym_thread_local] = ACTIONS(1450), - [anon_sym___thread] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_constexpr] = ACTIONS(1450), - [anon_sym_volatile] = ACTIONS(1450), - [anon_sym_restrict] = ACTIONS(1450), - [anon_sym___restrict__] = ACTIONS(1450), - [anon_sym__Atomic] = ACTIONS(1450), - [anon_sym__Noreturn] = ACTIONS(1450), - [anon_sym_noreturn] = ACTIONS(1450), - [sym_primitive_type] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_do] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_goto] = ACTIONS(1450), - [anon_sym___try] = ACTIONS(1450), - [anon_sym___leave] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_sizeof] = ACTIONS(1450), - [anon_sym___alignof__] = ACTIONS(1450), - [anon_sym___alignof] = ACTIONS(1450), - [anon_sym__alignof] = ACTIONS(1450), - [anon_sym_alignof] = ACTIONS(1450), - [anon_sym__Alignof] = ACTIONS(1450), - [anon_sym_offsetof] = ACTIONS(1450), - [anon_sym__Generic] = ACTIONS(1450), - [anon_sym_asm] = ACTIONS(1450), - [anon_sym___asm__] = ACTIONS(1450), - [sym_number_literal] = ACTIONS(1452), - [anon_sym_L_SQUOTE] = ACTIONS(1452), - [anon_sym_u_SQUOTE] = ACTIONS(1452), - [anon_sym_U_SQUOTE] = ACTIONS(1452), - [anon_sym_u8_SQUOTE] = ACTIONS(1452), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_L_DQUOTE] = ACTIONS(1452), - [anon_sym_u_DQUOTE] = ACTIONS(1452), - [anon_sym_U_DQUOTE] = ACTIONS(1452), - [anon_sym_u8_DQUOTE] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_true] = ACTIONS(1450), - [sym_false] = ACTIONS(1450), - [anon_sym_NULL] = ACTIONS(1450), - [anon_sym_nullptr] = ACTIONS(1450), + [489] = { + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym___try] = ACTIONS(1510), + [anon_sym___leave] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym___try] = ACTIONS(1506), + [anon_sym___leave] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [sym_identifier] = ACTIONS(1494), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym___try] = ACTIONS(1494), + [anon_sym___leave] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_attribute_declaration] = STATE(410), - [sym_compound_statement] = STATE(307), - [sym_attributed_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym_seh_try_statement] = STATE(307), - [sym_seh_leave_statement] = STATE(307), - [sym__expression] = STATE(1243), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2110), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(1550), + [494] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(267), + [sym_attributed_statement] = STATE(269), + [sym_labeled_statement] = STATE(259), + [sym_expression_statement] = STATE(273), + [sym_if_statement] = STATE(274), + [sym_switch_statement] = STATE(275), + [sym_case_statement] = STATE(278), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(287), + [sym_break_statement] = STATE(288), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(290), + [sym_seh_try_statement] = STATE(291), + [sym_seh_leave_statement] = STATE(294), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1770), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67700,20 +70358,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1265), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -67744,633 +70402,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [495] = { + [sym_attribute_declaration] = STATE(454), + [sym_compound_statement] = STATE(255), + [sym_attributed_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_case_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_goto_statement] = STATE(255), + [sym_seh_try_statement] = STATE(255), + [sym_seh_leave_statement] = STATE(255), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(1770), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [496] = { + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym___try] = ACTIONS(1502), + [anon_sym___leave] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1504), + [anon_sym_u_SQUOTE] = ACTIONS(1504), + [anon_sym_U_SQUOTE] = ACTIONS(1504), + [anon_sym_u8_SQUOTE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_L_DQUOTE] = ACTIONS(1504), + [anon_sym_u_DQUOTE] = ACTIONS(1504), + [anon_sym_U_DQUOTE] = ACTIONS(1504), + [anon_sym_u8_DQUOTE] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), [sym_comment] = ACTIONS(3), }, - [473] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [497] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(136), + [sym_attributed_statement] = STATE(136), + [sym_labeled_statement] = STATE(136), + [sym_expression_statement] = STATE(136), + [sym_if_statement] = STATE(136), + [sym_switch_statement] = STATE(136), + [sym_case_statement] = STATE(136), + [sym_while_statement] = STATE(136), + [sym_do_statement] = STATE(136), + [sym_for_statement] = STATE(136), + [sym_return_statement] = STATE(136), + [sym_break_statement] = STATE(136), + [sym_continue_statement] = STATE(136), + [sym_goto_statement] = STATE(136), + [sym_seh_try_statement] = STATE(136), + [sym_seh_leave_statement] = STATE(136), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [498] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [474] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [499] = { + [sym_attribute_declaration] = STATE(499), + [sym_compound_statement] = STATE(97), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_case_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym_seh_try_statement] = STATE(97), + [sym_seh_leave_statement] = STATE(97), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(1867), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_case] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_goto] = ACTIONS(1906), + [anon_sym___try] = ACTIONS(1909), + [anon_sym___leave] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_sizeof] = ACTIONS(1642), + [anon_sym___alignof__] = ACTIONS(1645), + [anon_sym___alignof] = ACTIONS(1645), + [anon_sym__alignof] = ACTIONS(1645), + [anon_sym_alignof] = ACTIONS(1645), + [anon_sym__Alignof] = ACTIONS(1645), + [anon_sym_offsetof] = ACTIONS(1648), + [anon_sym__Generic] = ACTIONS(1651), + [anon_sym_asm] = ACTIONS(1654), + [anon_sym___asm__] = ACTIONS(1654), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1660), + [anon_sym_u_SQUOTE] = ACTIONS(1660), + [anon_sym_U_SQUOTE] = ACTIONS(1660), + [anon_sym_u8_SQUOTE] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_L_DQUOTE] = ACTIONS(1663), + [anon_sym_u_DQUOTE] = ACTIONS(1663), + [anon_sym_U_DQUOTE] = ACTIONS(1663), + [anon_sym_u8_DQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym_true] = ACTIONS(1666), + [sym_false] = ACTIONS(1666), + [anon_sym_NULL] = ACTIONS(1669), + [anon_sym_nullptr] = ACTIONS(1669), [sym_comment] = ACTIONS(3), }, - [475] = { - [sym_identifier] = ACTIONS(1458), - [aux_sym_preproc_include_token1] = ACTIONS(1458), - [aux_sym_preproc_def_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token1] = ACTIONS(1458), - [aux_sym_preproc_if_token2] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), - [sym_preproc_directive] = ACTIONS(1458), - [anon_sym_LPAREN2] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym___extension__] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym___attribute__] = ACTIONS(1458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), - [anon_sym___declspec] = ACTIONS(1458), - [anon_sym___cdecl] = ACTIONS(1458), - [anon_sym___clrcall] = ACTIONS(1458), - [anon_sym___stdcall] = ACTIONS(1458), - [anon_sym___fastcall] = ACTIONS(1458), - [anon_sym___thiscall] = ACTIONS(1458), - [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_signed] = ACTIONS(1458), - [anon_sym_unsigned] = ACTIONS(1458), - [anon_sym_long] = ACTIONS(1458), - [anon_sym_short] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_auto] = ACTIONS(1458), - [anon_sym_register] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym___inline] = ACTIONS(1458), - [anon_sym___inline__] = ACTIONS(1458), - [anon_sym___forceinline] = ACTIONS(1458), - [anon_sym_thread_local] = ACTIONS(1458), - [anon_sym___thread] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_constexpr] = ACTIONS(1458), - [anon_sym_volatile] = ACTIONS(1458), - [anon_sym_restrict] = ACTIONS(1458), - [anon_sym___restrict__] = ACTIONS(1458), - [anon_sym__Atomic] = ACTIONS(1458), - [anon_sym__Noreturn] = ACTIONS(1458), - [anon_sym_noreturn] = ACTIONS(1458), - [sym_primitive_type] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_do] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_goto] = ACTIONS(1458), - [anon_sym___try] = ACTIONS(1458), - [anon_sym___leave] = ACTIONS(1458), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_sizeof] = ACTIONS(1458), - [anon_sym___alignof__] = ACTIONS(1458), - [anon_sym___alignof] = ACTIONS(1458), - [anon_sym__alignof] = ACTIONS(1458), - [anon_sym_alignof] = ACTIONS(1458), - [anon_sym__Alignof] = ACTIONS(1458), - [anon_sym_offsetof] = ACTIONS(1458), - [anon_sym__Generic] = ACTIONS(1458), - [anon_sym_asm] = ACTIONS(1458), - [anon_sym___asm__] = ACTIONS(1458), - [sym_number_literal] = ACTIONS(1460), - [anon_sym_L_SQUOTE] = ACTIONS(1460), - [anon_sym_u_SQUOTE] = ACTIONS(1460), - [anon_sym_U_SQUOTE] = ACTIONS(1460), - [anon_sym_u8_SQUOTE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_L_DQUOTE] = ACTIONS(1460), - [anon_sym_u_DQUOTE] = ACTIONS(1460), - [anon_sym_U_DQUOTE] = ACTIONS(1460), - [anon_sym_u8_DQUOTE] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_true] = ACTIONS(1458), - [sym_false] = ACTIONS(1458), - [anon_sym_NULL] = ACTIONS(1458), - [anon_sym_nullptr] = ACTIONS(1458), + [500] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(285), + [sym_attributed_statement] = STATE(285), + [sym_labeled_statement] = STATE(285), + [sym_expression_statement] = STATE(285), + [sym_if_statement] = STATE(285), + [sym_switch_statement] = STATE(285), + [sym_case_statement] = STATE(285), + [sym_while_statement] = STATE(285), + [sym_do_statement] = STATE(285), + [sym_for_statement] = STATE(285), + [sym_return_statement] = STATE(285), + [sym_break_statement] = STATE(285), + [sym_continue_statement] = STATE(285), + [sym_goto_statement] = STATE(285), + [sym_seh_try_statement] = STATE(285), + [sym_seh_leave_statement] = STATE(285), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [476] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym___extension__] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym___inline] = ACTIONS(1426), - [anon_sym___inline__] = ACTIONS(1426), - [anon_sym___forceinline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym___thread] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym___try] = ACTIONS(1426), - [anon_sym___leave] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym___alignof__] = ACTIONS(1426), - [anon_sym___alignof] = ACTIONS(1426), - [anon_sym__alignof] = ACTIONS(1426), - [anon_sym_alignof] = ACTIONS(1426), - [anon_sym__Alignof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [501] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(132), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(124), + [sym_case_statement] = STATE(123), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(121), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(114), + [sym_seh_try_statement] = STATE(108), + [sym_seh_leave_statement] = STATE(106), + [sym__expression] = STATE(1286), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2150), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym_attribute_declaration] = STATE(426), - [sym_compound_statement] = STATE(370), - [sym_attributed_statement] = STATE(375), - [sym_labeled_statement] = STATE(377), - [sym_expression_statement] = STATE(273), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(352), - [sym_while_statement] = STATE(351), - [sym_do_statement] = STATE(347), - [sym_for_statement] = STATE(345), - [sym_return_statement] = STATE(343), - [sym_break_statement] = STATE(336), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(332), - [sym_seh_try_statement] = STATE(317), - [sym_seh_leave_statement] = STATE(286), - [sym__expression] = STATE(1284), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_attributed_declarator_repeat1] = STATE(426), - [sym_identifier] = ACTIONS(1558), + [503] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(2217), + [sym_attributed_statement] = STATE(2217), + [sym_labeled_statement] = STATE(2217), + [sym_expression_statement] = STATE(2217), + [sym_if_statement] = STATE(2217), + [sym_switch_statement] = STATE(2217), + [sym_case_statement] = STATE(2217), + [sym_while_statement] = STATE(2217), + [sym_do_statement] = STATE(2217), + [sym_for_statement] = STATE(2217), + [sym_return_statement] = STATE(2217), + [sym_break_statement] = STATE(2217), + [sym_continue_statement] = STATE(2217), + [sym_goto_statement] = STATE(2217), + [sym_seh_try_statement] = STATE(2217), + [sym_seh_leave_statement] = STATE(2217), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68378,22 +71230,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(1247), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1282), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1249), - [anon_sym___leave] = ACTIONS(1251), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -68423,362 +71275,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [478] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym___try] = ACTIONS(1422), - [anon_sym___leave] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1482), - [aux_sym_preproc_include_token1] = ACTIONS(1482), - [aux_sym_preproc_def_token1] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), - [sym_preproc_directive] = ACTIONS(1482), - [anon_sym_LPAREN2] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_TILDE] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym___extension__] = ACTIONS(1482), - [anon_sym_typedef] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym___attribute__] = ACTIONS(1482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym___declspec] = ACTIONS(1482), - [anon_sym___cdecl] = ACTIONS(1482), - [anon_sym___clrcall] = ACTIONS(1482), - [anon_sym___stdcall] = ACTIONS(1482), - [anon_sym___fastcall] = ACTIONS(1482), - [anon_sym___thiscall] = ACTIONS(1482), - [anon_sym___vectorcall] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_signed] = ACTIONS(1482), - [anon_sym_unsigned] = ACTIONS(1482), - [anon_sym_long] = ACTIONS(1482), - [anon_sym_short] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_auto] = ACTIONS(1482), - [anon_sym_register] = ACTIONS(1482), - [anon_sym_inline] = ACTIONS(1482), - [anon_sym___inline] = ACTIONS(1482), - [anon_sym___inline__] = ACTIONS(1482), - [anon_sym___forceinline] = ACTIONS(1482), - [anon_sym_thread_local] = ACTIONS(1482), - [anon_sym___thread] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_constexpr] = ACTIONS(1482), - [anon_sym_volatile] = ACTIONS(1482), - [anon_sym_restrict] = ACTIONS(1482), - [anon_sym___restrict__] = ACTIONS(1482), - [anon_sym__Atomic] = ACTIONS(1482), - [anon_sym__Noreturn] = ACTIONS(1482), - [anon_sym_noreturn] = ACTIONS(1482), - [sym_primitive_type] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_switch] = ACTIONS(1482), - [anon_sym_case] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_do] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_goto] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1484), - [anon_sym_sizeof] = ACTIONS(1482), - [anon_sym___alignof__] = ACTIONS(1482), - [anon_sym___alignof] = ACTIONS(1482), - [anon_sym__alignof] = ACTIONS(1482), - [anon_sym_alignof] = ACTIONS(1482), - [anon_sym__Alignof] = ACTIONS(1482), - [anon_sym_offsetof] = ACTIONS(1482), - [anon_sym__Generic] = ACTIONS(1482), - [anon_sym_asm] = ACTIONS(1482), - [anon_sym___asm__] = ACTIONS(1482), - [sym_number_literal] = ACTIONS(1484), - [anon_sym_L_SQUOTE] = ACTIONS(1484), - [anon_sym_u_SQUOTE] = ACTIONS(1484), - [anon_sym_U_SQUOTE] = ACTIONS(1484), - [anon_sym_u8_SQUOTE] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1484), - [anon_sym_L_DQUOTE] = ACTIONS(1484), - [anon_sym_u_DQUOTE] = ACTIONS(1484), - [anon_sym_U_DQUOTE] = ACTIONS(1484), - [anon_sym_u8_DQUOTE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1484), - [sym_true] = ACTIONS(1482), - [sym_false] = ACTIONS(1482), - [anon_sym_NULL] = ACTIONS(1482), - [anon_sym_nullptr] = ACTIONS(1482), + [504] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1474), - [aux_sym_preproc_include_token1] = ACTIONS(1474), - [aux_sym_preproc_def_token1] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), - [sym_preproc_directive] = ACTIONS(1474), - [anon_sym_LPAREN2] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym___extension__] = ACTIONS(1474), - [anon_sym_typedef] = ACTIONS(1474), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym___attribute__] = ACTIONS(1474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), - [anon_sym___declspec] = ACTIONS(1474), - [anon_sym___cdecl] = ACTIONS(1474), - [anon_sym___clrcall] = ACTIONS(1474), - [anon_sym___stdcall] = ACTIONS(1474), - [anon_sym___fastcall] = ACTIONS(1474), - [anon_sym___thiscall] = ACTIONS(1474), - [anon_sym___vectorcall] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_signed] = ACTIONS(1474), - [anon_sym_unsigned] = ACTIONS(1474), - [anon_sym_long] = ACTIONS(1474), - [anon_sym_short] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_auto] = ACTIONS(1474), - [anon_sym_register] = ACTIONS(1474), - [anon_sym_inline] = ACTIONS(1474), - [anon_sym___inline] = ACTIONS(1474), - [anon_sym___inline__] = ACTIONS(1474), - [anon_sym___forceinline] = ACTIONS(1474), - [anon_sym_thread_local] = ACTIONS(1474), - [anon_sym___thread] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_constexpr] = ACTIONS(1474), - [anon_sym_volatile] = ACTIONS(1474), - [anon_sym_restrict] = ACTIONS(1474), - [anon_sym___restrict__] = ACTIONS(1474), - [anon_sym__Atomic] = ACTIONS(1474), - [anon_sym__Noreturn] = ACTIONS(1474), - [anon_sym_noreturn] = ACTIONS(1474), - [sym_primitive_type] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_switch] = ACTIONS(1474), - [anon_sym_case] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_do] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_goto] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_sizeof] = ACTIONS(1474), - [anon_sym___alignof__] = ACTIONS(1474), - [anon_sym___alignof] = ACTIONS(1474), - [anon_sym__alignof] = ACTIONS(1474), - [anon_sym_alignof] = ACTIONS(1474), - [anon_sym__Alignof] = ACTIONS(1474), - [anon_sym_offsetof] = ACTIONS(1474), - [anon_sym__Generic] = ACTIONS(1474), - [anon_sym_asm] = ACTIONS(1474), - [anon_sym___asm__] = ACTIONS(1474), - [sym_number_literal] = ACTIONS(1476), - [anon_sym_L_SQUOTE] = ACTIONS(1476), - [anon_sym_u_SQUOTE] = ACTIONS(1476), - [anon_sym_U_SQUOTE] = ACTIONS(1476), - [anon_sym_u8_SQUOTE] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_L_DQUOTE] = ACTIONS(1476), - [anon_sym_u_DQUOTE] = ACTIONS(1476), - [anon_sym_U_DQUOTE] = ACTIONS(1476), - [anon_sym_u8_DQUOTE] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym_true] = ACTIONS(1474), - [sym_false] = ACTIONS(1474), - [anon_sym_NULL] = ACTIONS(1474), - [anon_sym_nullptr] = ACTIONS(1474), + [505] = { + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym__expression] = STATE(1013), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(843), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(843), - [sym_call_expression] = STATE(843), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(843), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(843), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1532), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1520), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_RBRACK] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_STAR_EQ] = ACTIONS(1522), - [anon_sym_SLASH_EQ] = ACTIONS(1522), - [anon_sym_PERCENT_EQ] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1522), - [anon_sym_DASH_EQ] = ACTIONS(1522), - [anon_sym_LT_LT_EQ] = ACTIONS(1522), - [anon_sym_GT_GT_EQ] = ACTIONS(1522), - [anon_sym_AMP_EQ] = ACTIONS(1522), - [anon_sym_CARET_EQ] = ACTIONS(1522), - [anon_sym_PIPE_EQ] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1903), + [506] = { + [sym_attribute_declaration] = STATE(470), + [sym_compound_statement] = STATE(308), + [sym_attributed_statement] = STATE(308), + [sym_labeled_statement] = STATE(308), + [sym_expression_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_switch_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_do_statement] = STATE(308), + [sym_for_statement] = STATE(308), + [sym_return_statement] = STATE(308), + [sym_break_statement] = STATE(308), + [sym_continue_statement] = STATE(308), + [sym_goto_statement] = STATE(308), + [sym_seh_try_statement] = STATE(308), + [sym_seh_leave_statement] = STATE(308), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2190), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_attributed_declarator_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1566), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1568), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1284), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -68788,8 +71549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -68807,383 +71566,670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [482] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1434), - [aux_sym_preproc_include_token1] = ACTIONS(1434), - [aux_sym_preproc_def_token1] = ACTIONS(1434), - [aux_sym_preproc_if_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), - [sym_preproc_directive] = ACTIONS(1434), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym___extension__] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym___attribute__] = ACTIONS(1434), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), - [anon_sym___declspec] = ACTIONS(1434), - [anon_sym___cdecl] = ACTIONS(1434), - [anon_sym___clrcall] = ACTIONS(1434), - [anon_sym___stdcall] = ACTIONS(1434), - [anon_sym___fastcall] = ACTIONS(1434), - [anon_sym___thiscall] = ACTIONS(1434), - [anon_sym___vectorcall] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_signed] = ACTIONS(1434), - [anon_sym_unsigned] = ACTIONS(1434), - [anon_sym_long] = ACTIONS(1434), - [anon_sym_short] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_auto] = ACTIONS(1434), - [anon_sym_register] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym___inline] = ACTIONS(1434), - [anon_sym___inline__] = ACTIONS(1434), - [anon_sym___forceinline] = ACTIONS(1434), - [anon_sym_thread_local] = ACTIONS(1434), - [anon_sym___thread] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_constexpr] = ACTIONS(1434), - [anon_sym_volatile] = ACTIONS(1434), - [anon_sym_restrict] = ACTIONS(1434), - [anon_sym___restrict__] = ACTIONS(1434), - [anon_sym__Atomic] = ACTIONS(1434), - [anon_sym__Noreturn] = ACTIONS(1434), - [anon_sym_noreturn] = ACTIONS(1434), - [sym_primitive_type] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_do] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_goto] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_sizeof] = ACTIONS(1434), - [anon_sym___alignof__] = ACTIONS(1434), - [anon_sym___alignof] = ACTIONS(1434), - [anon_sym__alignof] = ACTIONS(1434), - [anon_sym_alignof] = ACTIONS(1434), - [anon_sym__Alignof] = ACTIONS(1434), - [anon_sym_offsetof] = ACTIONS(1434), - [anon_sym__Generic] = ACTIONS(1434), - [anon_sym_asm] = ACTIONS(1434), - [anon_sym___asm__] = ACTIONS(1434), - [sym_number_literal] = ACTIONS(1436), - [anon_sym_L_SQUOTE] = ACTIONS(1436), - [anon_sym_u_SQUOTE] = ACTIONS(1436), - [anon_sym_U_SQUOTE] = ACTIONS(1436), - [anon_sym_u8_SQUOTE] = ACTIONS(1436), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_L_DQUOTE] = ACTIONS(1436), - [anon_sym_u_DQUOTE] = ACTIONS(1436), - [anon_sym_U_DQUOTE] = ACTIONS(1436), - [anon_sym_u8_DQUOTE] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [anon_sym_NULL] = ACTIONS(1434), - [anon_sym_nullptr] = ACTIONS(1434), + [507] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1448), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [483] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym___extension__] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym___inline] = ACTIONS(1422), - [anon_sym___inline__] = ACTIONS(1422), - [anon_sym___forceinline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym___thread] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym___alignof__] = ACTIONS(1422), - [anon_sym___alignof] = ACTIONS(1422), - [anon_sym__alignof] = ACTIONS(1422), - [anon_sym_alignof] = ACTIONS(1422), - [anon_sym__Alignof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [508] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1456), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1442), - [aux_sym_preproc_include_token1] = ACTIONS(1442), - [aux_sym_preproc_def_token1] = ACTIONS(1442), - [aux_sym_preproc_if_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), - [sym_preproc_directive] = ACTIONS(1442), - [anon_sym_LPAREN2] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym___extension__] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym___attribute__] = ACTIONS(1442), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), - [anon_sym___declspec] = ACTIONS(1442), - [anon_sym___cdecl] = ACTIONS(1442), - [anon_sym___clrcall] = ACTIONS(1442), - [anon_sym___stdcall] = ACTIONS(1442), - [anon_sym___fastcall] = ACTIONS(1442), - [anon_sym___thiscall] = ACTIONS(1442), - [anon_sym___vectorcall] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_signed] = ACTIONS(1442), - [anon_sym_unsigned] = ACTIONS(1442), - [anon_sym_long] = ACTIONS(1442), - [anon_sym_short] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_auto] = ACTIONS(1442), - [anon_sym_register] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym___inline] = ACTIONS(1442), - [anon_sym___inline__] = ACTIONS(1442), - [anon_sym___forceinline] = ACTIONS(1442), - [anon_sym_thread_local] = ACTIONS(1442), - [anon_sym___thread] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_constexpr] = ACTIONS(1442), - [anon_sym_volatile] = ACTIONS(1442), - [anon_sym_restrict] = ACTIONS(1442), - [anon_sym___restrict__] = ACTIONS(1442), - [anon_sym__Atomic] = ACTIONS(1442), - [anon_sym__Noreturn] = ACTIONS(1442), - [anon_sym_noreturn] = ACTIONS(1442), - [sym_primitive_type] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_do] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_goto] = ACTIONS(1442), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1442), - [anon_sym___alignof__] = ACTIONS(1442), - [anon_sym___alignof] = ACTIONS(1442), - [anon_sym__alignof] = ACTIONS(1442), - [anon_sym_alignof] = ACTIONS(1442), - [anon_sym__Alignof] = ACTIONS(1442), - [anon_sym_offsetof] = ACTIONS(1442), - [anon_sym__Generic] = ACTIONS(1442), - [anon_sym_asm] = ACTIONS(1442), - [anon_sym___asm__] = ACTIONS(1442), - [sym_number_literal] = ACTIONS(1444), - [anon_sym_L_SQUOTE] = ACTIONS(1444), - [anon_sym_u_SQUOTE] = ACTIONS(1444), - [anon_sym_U_SQUOTE] = ACTIONS(1444), - [anon_sym_u8_SQUOTE] = ACTIONS(1444), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_L_DQUOTE] = ACTIONS(1444), - [anon_sym_u_DQUOTE] = ACTIONS(1444), - [anon_sym_U_DQUOTE] = ACTIONS(1444), - [anon_sym_u8_DQUOTE] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_true] = ACTIONS(1442), - [sym_false] = ACTIONS(1442), - [anon_sym_NULL] = ACTIONS(1442), - [anon_sym_nullptr] = ACTIONS(1442), + [509] = { + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(884), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(884), + [sym_call_expression] = STATE(884), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(884), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(884), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1546), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1546), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1546), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1546), + [anon_sym_GT_GT] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1919), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [485] = { - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [aux_sym_preproc_include_token1] = ACTIONS(1907), - [aux_sym_preproc_def_token1] = ACTIONS(1907), - [aux_sym_preproc_if_token1] = ACTIONS(1907), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1907), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1907), - [sym_preproc_directive] = ACTIONS(1907), - [anon_sym_LPAREN2] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_TILDE] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1907), - [anon_sym_PLUS] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym___extension__] = ACTIONS(1907), - [anon_sym_typedef] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym___attribute__] = ACTIONS(1907), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), - [anon_sym___declspec] = ACTIONS(1907), - [anon_sym___cdecl] = ACTIONS(1907), - [anon_sym___clrcall] = ACTIONS(1907), - [anon_sym___stdcall] = ACTIONS(1907), - [anon_sym___fastcall] = ACTIONS(1907), - [anon_sym___thiscall] = ACTIONS(1907), - [anon_sym___vectorcall] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_signed] = ACTIONS(1907), - [anon_sym_unsigned] = ACTIONS(1907), - [anon_sym_long] = ACTIONS(1907), - [anon_sym_short] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_auto] = ACTIONS(1907), - [anon_sym_register] = ACTIONS(1907), - [anon_sym_inline] = ACTIONS(1907), - [anon_sym___inline] = ACTIONS(1907), - [anon_sym___inline__] = ACTIONS(1907), - [anon_sym___forceinline] = ACTIONS(1907), - [anon_sym_thread_local] = ACTIONS(1907), - [anon_sym___thread] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_constexpr] = ACTIONS(1907), - [anon_sym_volatile] = ACTIONS(1907), - [anon_sym_restrict] = ACTIONS(1907), - [anon_sym___restrict__] = ACTIONS(1907), - [anon_sym__Atomic] = ACTIONS(1907), - [anon_sym__Noreturn] = ACTIONS(1907), - [anon_sym_noreturn] = ACTIONS(1907), - [sym_primitive_type] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_switch] = ACTIONS(1907), - [anon_sym_case] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_do] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_goto] = ACTIONS(1907), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1907), - [anon_sym___alignof__] = ACTIONS(1907), - [anon_sym___alignof] = ACTIONS(1907), - [anon_sym__alignof] = ACTIONS(1907), - [anon_sym_alignof] = ACTIONS(1907), - [anon_sym__Alignof] = ACTIONS(1907), - [anon_sym_offsetof] = ACTIONS(1907), - [anon_sym__Generic] = ACTIONS(1907), - [anon_sym_asm] = ACTIONS(1907), - [anon_sym___asm__] = ACTIONS(1907), - [sym_number_literal] = ACTIONS(1905), - [anon_sym_L_SQUOTE] = ACTIONS(1905), - [anon_sym_u_SQUOTE] = ACTIONS(1905), - [anon_sym_U_SQUOTE] = ACTIONS(1905), - [anon_sym_u8_SQUOTE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_L_DQUOTE] = ACTIONS(1905), - [anon_sym_u_DQUOTE] = ACTIONS(1905), - [anon_sym_U_DQUOTE] = ACTIONS(1905), - [anon_sym_u8_DQUOTE] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym_true] = ACTIONS(1907), - [sym_false] = ACTIONS(1907), - [anon_sym_NULL] = ACTIONS(1907), - [anon_sym_nullptr] = ACTIONS(1907), + [510] = { + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1510), + [aux_sym_preproc_include_token1] = ACTIONS(1510), + [aux_sym_preproc_def_token1] = ACTIONS(1510), + [aux_sym_preproc_if_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1510), + [sym_preproc_directive] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_TILDE] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym___extension__] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym___attribute__] = ACTIONS(1510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1512), + [anon_sym___declspec] = ACTIONS(1510), + [anon_sym___cdecl] = ACTIONS(1510), + [anon_sym___clrcall] = ACTIONS(1510), + [anon_sym___stdcall] = ACTIONS(1510), + [anon_sym___fastcall] = ACTIONS(1510), + [anon_sym___thiscall] = ACTIONS(1510), + [anon_sym___vectorcall] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym___inline] = ACTIONS(1510), + [anon_sym___inline__] = ACTIONS(1510), + [anon_sym___forceinline] = ACTIONS(1510), + [anon_sym_thread_local] = ACTIONS(1510), + [anon_sym___thread] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_constexpr] = ACTIONS(1510), + [anon_sym_volatile] = ACTIONS(1510), + [anon_sym_restrict] = ACTIONS(1510), + [anon_sym___restrict__] = ACTIONS(1510), + [anon_sym__Atomic] = ACTIONS(1510), + [anon_sym__Noreturn] = ACTIONS(1510), + [anon_sym_noreturn] = ACTIONS(1510), + [sym_primitive_type] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_goto] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1512), + [anon_sym_PLUS_PLUS] = ACTIONS(1512), + [anon_sym_sizeof] = ACTIONS(1510), + [anon_sym___alignof__] = ACTIONS(1510), + [anon_sym___alignof] = ACTIONS(1510), + [anon_sym__alignof] = ACTIONS(1510), + [anon_sym_alignof] = ACTIONS(1510), + [anon_sym__Alignof] = ACTIONS(1510), + [anon_sym_offsetof] = ACTIONS(1510), + [anon_sym__Generic] = ACTIONS(1510), + [anon_sym_asm] = ACTIONS(1510), + [anon_sym___asm__] = ACTIONS(1510), + [sym_number_literal] = ACTIONS(1512), + [anon_sym_L_SQUOTE] = ACTIONS(1512), + [anon_sym_u_SQUOTE] = ACTIONS(1512), + [anon_sym_U_SQUOTE] = ACTIONS(1512), + [anon_sym_u8_SQUOTE] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_L_DQUOTE] = ACTIONS(1512), + [anon_sym_u_DQUOTE] = ACTIONS(1512), + [anon_sym_U_DQUOTE] = ACTIONS(1512), + [anon_sym_u8_DQUOTE] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym_true] = ACTIONS(1510), + [sym_false] = ACTIONS(1510), + [anon_sym_NULL] = ACTIONS(1510), + [anon_sym_nullptr] = ACTIONS(1510), [sym_comment] = ACTIONS(3), }, - [486] = { + [511] = { + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [aux_sym_preproc_include_token1] = ACTIONS(1923), + [aux_sym_preproc_def_token1] = ACTIONS(1923), + [aux_sym_preproc_if_token1] = ACTIONS(1923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1923), + [sym_preproc_directive] = ACTIONS(1923), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1921), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1921), + [anon_sym___extension__] = ACTIONS(1923), + [anon_sym_typedef] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym___attribute__] = ACTIONS(1923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1921), + [anon_sym___declspec] = ACTIONS(1923), + [anon_sym___cdecl] = ACTIONS(1923), + [anon_sym___clrcall] = ACTIONS(1923), + [anon_sym___stdcall] = ACTIONS(1923), + [anon_sym___fastcall] = ACTIONS(1923), + [anon_sym___thiscall] = ACTIONS(1923), + [anon_sym___vectorcall] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_signed] = ACTIONS(1923), + [anon_sym_unsigned] = ACTIONS(1923), + [anon_sym_long] = ACTIONS(1923), + [anon_sym_short] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_auto] = ACTIONS(1923), + [anon_sym_register] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym___inline] = ACTIONS(1923), + [anon_sym___inline__] = ACTIONS(1923), + [anon_sym___forceinline] = ACTIONS(1923), + [anon_sym_thread_local] = ACTIONS(1923), + [anon_sym___thread] = ACTIONS(1923), + [anon_sym_const] = ACTIONS(1923), + [anon_sym_constexpr] = ACTIONS(1923), + [anon_sym_volatile] = ACTIONS(1923), + [anon_sym_restrict] = ACTIONS(1923), + [anon_sym___restrict__] = ACTIONS(1923), + [anon_sym__Atomic] = ACTIONS(1923), + [anon_sym__Noreturn] = ACTIONS(1923), + [anon_sym_noreturn] = ACTIONS(1923), + [sym_primitive_type] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1923), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_goto] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_sizeof] = ACTIONS(1923), + [anon_sym___alignof__] = ACTIONS(1923), + [anon_sym___alignof] = ACTIONS(1923), + [anon_sym__alignof] = ACTIONS(1923), + [anon_sym_alignof] = ACTIONS(1923), + [anon_sym__Alignof] = ACTIONS(1923), + [anon_sym_offsetof] = ACTIONS(1923), + [anon_sym__Generic] = ACTIONS(1923), + [anon_sym_asm] = ACTIONS(1923), + [anon_sym___asm__] = ACTIONS(1923), + [sym_number_literal] = ACTIONS(1921), + [anon_sym_L_SQUOTE] = ACTIONS(1921), + [anon_sym_u_SQUOTE] = ACTIONS(1921), + [anon_sym_U_SQUOTE] = ACTIONS(1921), + [anon_sym_u8_SQUOTE] = ACTIONS(1921), + [anon_sym_SQUOTE] = ACTIONS(1921), + [anon_sym_L_DQUOTE] = ACTIONS(1921), + [anon_sym_u_DQUOTE] = ACTIONS(1921), + [anon_sym_U_DQUOTE] = ACTIONS(1921), + [anon_sym_u8_DQUOTE] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [anon_sym_NULL] = ACTIONS(1923), + [anon_sym_nullptr] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1498), + [aux_sym_preproc_include_token1] = ACTIONS(1498), + [aux_sym_preproc_def_token1] = ACTIONS(1498), + [aux_sym_preproc_if_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1498), + [sym_preproc_directive] = ACTIONS(1498), + [anon_sym_LPAREN2] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1498), + [anon_sym_typedef] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym___attribute__] = ACTIONS(1498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1500), + [anon_sym___declspec] = ACTIONS(1498), + [anon_sym___cdecl] = ACTIONS(1498), + [anon_sym___clrcall] = ACTIONS(1498), + [anon_sym___stdcall] = ACTIONS(1498), + [anon_sym___fastcall] = ACTIONS(1498), + [anon_sym___thiscall] = ACTIONS(1498), + [anon_sym___vectorcall] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_signed] = ACTIONS(1498), + [anon_sym_unsigned] = ACTIONS(1498), + [anon_sym_long] = ACTIONS(1498), + [anon_sym_short] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_auto] = ACTIONS(1498), + [anon_sym_register] = ACTIONS(1498), + [anon_sym_inline] = ACTIONS(1498), + [anon_sym___inline] = ACTIONS(1498), + [anon_sym___inline__] = ACTIONS(1498), + [anon_sym___forceinline] = ACTIONS(1498), + [anon_sym_thread_local] = ACTIONS(1498), + [anon_sym___thread] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_constexpr] = ACTIONS(1498), + [anon_sym_volatile] = ACTIONS(1498), + [anon_sym_restrict] = ACTIONS(1498), + [anon_sym___restrict__] = ACTIONS(1498), + [anon_sym__Atomic] = ACTIONS(1498), + [anon_sym__Noreturn] = ACTIONS(1498), + [anon_sym_noreturn] = ACTIONS(1498), + [sym_primitive_type] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1498), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_do] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_goto] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1500), + [anon_sym_PLUS_PLUS] = ACTIONS(1500), + [anon_sym_sizeof] = ACTIONS(1498), + [anon_sym___alignof__] = ACTIONS(1498), + [anon_sym___alignof] = ACTIONS(1498), + [anon_sym__alignof] = ACTIONS(1498), + [anon_sym_alignof] = ACTIONS(1498), + [anon_sym__Alignof] = ACTIONS(1498), + [anon_sym_offsetof] = ACTIONS(1498), + [anon_sym__Generic] = ACTIONS(1498), + [anon_sym_asm] = ACTIONS(1498), + [anon_sym___asm__] = ACTIONS(1498), + [sym_number_literal] = ACTIONS(1500), + [anon_sym_L_SQUOTE] = ACTIONS(1500), + [anon_sym_u_SQUOTE] = ACTIONS(1500), + [anon_sym_U_SQUOTE] = ACTIONS(1500), + [anon_sym_u8_SQUOTE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_L_DQUOTE] = ACTIONS(1500), + [anon_sym_u_DQUOTE] = ACTIONS(1500), + [anon_sym_U_DQUOTE] = ACTIONS(1500), + [anon_sym_u8_DQUOTE] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(1500), + [sym_true] = ACTIONS(1498), + [sym_false] = ACTIONS(1498), + [anon_sym_NULL] = ACTIONS(1498), + [anon_sym_nullptr] = ACTIONS(1498), + [sym_comment] = ACTIONS(3), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1514), + [aux_sym_preproc_include_token1] = ACTIONS(1514), + [aux_sym_preproc_def_token1] = ACTIONS(1514), + [aux_sym_preproc_if_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1514), + [sym_preproc_directive] = ACTIONS(1514), + [anon_sym_LPAREN2] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym___extension__] = ACTIONS(1514), + [anon_sym_typedef] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym___attribute__] = ACTIONS(1514), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1516), + [anon_sym___declspec] = ACTIONS(1514), + [anon_sym___cdecl] = ACTIONS(1514), + [anon_sym___clrcall] = ACTIONS(1514), + [anon_sym___stdcall] = ACTIONS(1514), + [anon_sym___fastcall] = ACTIONS(1514), + [anon_sym___thiscall] = ACTIONS(1514), + [anon_sym___vectorcall] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_signed] = ACTIONS(1514), + [anon_sym_unsigned] = ACTIONS(1514), + [anon_sym_long] = ACTIONS(1514), + [anon_sym_short] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_auto] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_inline] = ACTIONS(1514), + [anon_sym___inline] = ACTIONS(1514), + [anon_sym___inline__] = ACTIONS(1514), + [anon_sym___forceinline] = ACTIONS(1514), + [anon_sym_thread_local] = ACTIONS(1514), + [anon_sym___thread] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_constexpr] = ACTIONS(1514), + [anon_sym_volatile] = ACTIONS(1514), + [anon_sym_restrict] = ACTIONS(1514), + [anon_sym___restrict__] = ACTIONS(1514), + [anon_sym__Atomic] = ACTIONS(1514), + [anon_sym__Noreturn] = ACTIONS(1514), + [anon_sym_noreturn] = ACTIONS(1514), + [sym_primitive_type] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_switch] = ACTIONS(1514), + [anon_sym_case] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_goto] = ACTIONS(1514), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_sizeof] = ACTIONS(1514), + [anon_sym___alignof__] = ACTIONS(1514), + [anon_sym___alignof] = ACTIONS(1514), + [anon_sym__alignof] = ACTIONS(1514), + [anon_sym_alignof] = ACTIONS(1514), + [anon_sym__Alignof] = ACTIONS(1514), + [anon_sym_offsetof] = ACTIONS(1514), + [anon_sym__Generic] = ACTIONS(1514), + [anon_sym_asm] = ACTIONS(1514), + [anon_sym___asm__] = ACTIONS(1514), + [sym_number_literal] = ACTIONS(1516), + [anon_sym_L_SQUOTE] = ACTIONS(1516), + [anon_sym_u_SQUOTE] = ACTIONS(1516), + [anon_sym_U_SQUOTE] = ACTIONS(1516), + [anon_sym_u8_SQUOTE] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_L_DQUOTE] = ACTIONS(1516), + [anon_sym_u_DQUOTE] = ACTIONS(1516), + [anon_sym_U_DQUOTE] = ACTIONS(1516), + [anon_sym_u8_DQUOTE] = ACTIONS(1516), + [anon_sym_DQUOTE] = ACTIONS(1516), + [sym_true] = ACTIONS(1514), + [sym_false] = ACTIONS(1514), + [anon_sym_NULL] = ACTIONS(1514), + [anon_sym_nullptr] = ACTIONS(1514), + [sym_comment] = ACTIONS(3), + }, + [514] = { [ts_builtin_sym_end] = ACTIONS(1440), [sym_identifier] = ACTIONS(1438), [aux_sym_preproc_include_token1] = ACTIONS(1438), @@ -69277,195 +72323,947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [487] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [515] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [aux_sym_preproc_include_token1] = ACTIONS(1927), + [aux_sym_preproc_def_token1] = ACTIONS(1927), + [aux_sym_preproc_if_token1] = ACTIONS(1927), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1927), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1927), + [sym_preproc_directive] = ACTIONS(1927), + [anon_sym_LPAREN2] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1925), + [anon_sym___extension__] = ACTIONS(1927), + [anon_sym_typedef] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym___attribute__] = ACTIONS(1927), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1925), + [anon_sym___declspec] = ACTIONS(1927), + [anon_sym___cdecl] = ACTIONS(1927), + [anon_sym___clrcall] = ACTIONS(1927), + [anon_sym___stdcall] = ACTIONS(1927), + [anon_sym___fastcall] = ACTIONS(1927), + [anon_sym___thiscall] = ACTIONS(1927), + [anon_sym___vectorcall] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_signed] = ACTIONS(1927), + [anon_sym_unsigned] = ACTIONS(1927), + [anon_sym_long] = ACTIONS(1927), + [anon_sym_short] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_auto] = ACTIONS(1927), + [anon_sym_register] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym___inline] = ACTIONS(1927), + [anon_sym___inline__] = ACTIONS(1927), + [anon_sym___forceinline] = ACTIONS(1927), + [anon_sym_thread_local] = ACTIONS(1927), + [anon_sym___thread] = ACTIONS(1927), + [anon_sym_const] = ACTIONS(1927), + [anon_sym_constexpr] = ACTIONS(1927), + [anon_sym_volatile] = ACTIONS(1927), + [anon_sym_restrict] = ACTIONS(1927), + [anon_sym___restrict__] = ACTIONS(1927), + [anon_sym__Atomic] = ACTIONS(1927), + [anon_sym__Noreturn] = ACTIONS(1927), + [anon_sym_noreturn] = ACTIONS(1927), + [sym_primitive_type] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1927), + [anon_sym_union] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_goto] = ACTIONS(1927), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_sizeof] = ACTIONS(1927), + [anon_sym___alignof__] = ACTIONS(1927), + [anon_sym___alignof] = ACTIONS(1927), + [anon_sym__alignof] = ACTIONS(1927), + [anon_sym_alignof] = ACTIONS(1927), + [anon_sym__Alignof] = ACTIONS(1927), + [anon_sym_offsetof] = ACTIONS(1927), + [anon_sym__Generic] = ACTIONS(1927), + [anon_sym_asm] = ACTIONS(1927), + [anon_sym___asm__] = ACTIONS(1927), + [sym_number_literal] = ACTIONS(1925), + [anon_sym_L_SQUOTE] = ACTIONS(1925), + [anon_sym_u_SQUOTE] = ACTIONS(1925), + [anon_sym_U_SQUOTE] = ACTIONS(1925), + [anon_sym_u8_SQUOTE] = ACTIONS(1925), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_L_DQUOTE] = ACTIONS(1925), + [anon_sym_u_DQUOTE] = ACTIONS(1925), + [anon_sym_U_DQUOTE] = ACTIONS(1925), + [anon_sym_u8_DQUOTE] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [anon_sym_NULL] = ACTIONS(1927), + [anon_sym_nullptr] = ACTIONS(1927), + [sym_comment] = ACTIONS(3), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1526), + [aux_sym_preproc_include_token1] = ACTIONS(1526), + [aux_sym_preproc_def_token1] = ACTIONS(1526), + [aux_sym_preproc_if_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1526), + [sym_preproc_directive] = ACTIONS(1526), + [anon_sym_LPAREN2] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PLUS] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_typedef] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym___declspec] = ACTIONS(1526), + [anon_sym___cdecl] = ACTIONS(1526), + [anon_sym___clrcall] = ACTIONS(1526), + [anon_sym___stdcall] = ACTIONS(1526), + [anon_sym___fastcall] = ACTIONS(1526), + [anon_sym___thiscall] = ACTIONS(1526), + [anon_sym___vectorcall] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_signed] = ACTIONS(1526), + [anon_sym_unsigned] = ACTIONS(1526), + [anon_sym_long] = ACTIONS(1526), + [anon_sym_short] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_auto] = ACTIONS(1526), + [anon_sym_register] = ACTIONS(1526), + [anon_sym_inline] = ACTIONS(1526), + [anon_sym___inline] = ACTIONS(1526), + [anon_sym___inline__] = ACTIONS(1526), + [anon_sym___forceinline] = ACTIONS(1526), + [anon_sym_thread_local] = ACTIONS(1526), + [anon_sym___thread] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_constexpr] = ACTIONS(1526), + [anon_sym_volatile] = ACTIONS(1526), + [anon_sym_restrict] = ACTIONS(1526), + [anon_sym___restrict__] = ACTIONS(1526), + [anon_sym__Atomic] = ACTIONS(1526), + [anon_sym__Noreturn] = ACTIONS(1526), + [anon_sym_noreturn] = ACTIONS(1526), + [sym_primitive_type] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_switch] = ACTIONS(1526), + [anon_sym_case] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_do] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_goto] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_PLUS_PLUS] = ACTIONS(1528), + [anon_sym_sizeof] = ACTIONS(1526), + [anon_sym___alignof__] = ACTIONS(1526), + [anon_sym___alignof] = ACTIONS(1526), + [anon_sym__alignof] = ACTIONS(1526), + [anon_sym_alignof] = ACTIONS(1526), + [anon_sym__Alignof] = ACTIONS(1526), + [anon_sym_offsetof] = ACTIONS(1526), + [anon_sym__Generic] = ACTIONS(1526), + [anon_sym_asm] = ACTIONS(1526), + [anon_sym___asm__] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1528), + [anon_sym_L_SQUOTE] = ACTIONS(1528), + [anon_sym_u_SQUOTE] = ACTIONS(1528), + [anon_sym_U_SQUOTE] = ACTIONS(1528), + [anon_sym_u8_SQUOTE] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_L_DQUOTE] = ACTIONS(1528), + [anon_sym_u_DQUOTE] = ACTIONS(1528), + [anon_sym_U_DQUOTE] = ACTIONS(1528), + [anon_sym_u8_DQUOTE] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym_true] = ACTIONS(1526), + [sym_false] = ACTIONS(1526), + [anon_sym_NULL] = ACTIONS(1526), + [anon_sym_nullptr] = ACTIONS(1526), + [sym_comment] = ACTIONS(3), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1502), + [aux_sym_preproc_include_token1] = ACTIONS(1502), + [aux_sym_preproc_def_token1] = ACTIONS(1502), + [aux_sym_preproc_if_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1502), + [sym_preproc_directive] = ACTIONS(1502), + [anon_sym_LPAREN2] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_TILDE] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_typedef] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1502), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1504), + [anon_sym___declspec] = ACTIONS(1502), + [anon_sym___cdecl] = ACTIONS(1502), + [anon_sym___clrcall] = ACTIONS(1502), + [anon_sym___stdcall] = ACTIONS(1502), + [anon_sym___fastcall] = ACTIONS(1502), + [anon_sym___thiscall] = ACTIONS(1502), + [anon_sym___vectorcall] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_signed] = ACTIONS(1502), + [anon_sym_unsigned] = ACTIONS(1502), + [anon_sym_long] = ACTIONS(1502), + [anon_sym_short] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_auto] = ACTIONS(1502), + [anon_sym_register] = ACTIONS(1502), + [anon_sym_inline] = ACTIONS(1502), + [anon_sym___inline] = ACTIONS(1502), + [anon_sym___inline__] = ACTIONS(1502), + [anon_sym___forceinline] = ACTIONS(1502), + [anon_sym_thread_local] = ACTIONS(1502), + [anon_sym___thread] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_constexpr] = ACTIONS(1502), + [anon_sym_volatile] = ACTIONS(1502), + [anon_sym_restrict] = ACTIONS(1502), + [anon_sym___restrict__] = ACTIONS(1502), + [anon_sym__Atomic] = ACTIONS(1502), + [anon_sym__Noreturn] = ACTIONS(1502), + [anon_sym_noreturn] = ACTIONS(1502), + [sym_primitive_type] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_switch] = ACTIONS(1502), + [anon_sym_case] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_do] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_goto] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1504), + [anon_sym_sizeof] = ACTIONS(1502), + [anon_sym___alignof__] = ACTIONS(1502), + [anon_sym___alignof] = ACTIONS(1502), + [anon_sym__alignof] = ACTIONS(1502), + [anon_sym_alignof] = ACTIONS(1502), + [anon_sym__Alignof] = ACTIONS(1502), + [anon_sym_offsetof] = ACTIONS(1502), + [anon_sym__Generic] = ACTIONS(1502), + [anon_sym_asm] = ACTIONS(1502), + [anon_sym___asm__] = ACTIONS(1502), + [sym_number_literal] = ACTIONS(1504), + [anon_sym_L_SQUOTE] = ACTIONS(1504), + [anon_sym_u_SQUOTE] = ACTIONS(1504), + [anon_sym_U_SQUOTE] = ACTIONS(1504), + [anon_sym_u8_SQUOTE] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_L_DQUOTE] = ACTIONS(1504), + [anon_sym_u_DQUOTE] = ACTIONS(1504), + [anon_sym_U_DQUOTE] = ACTIONS(1504), + [anon_sym_u8_DQUOTE] = ACTIONS(1504), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym_true] = ACTIONS(1502), + [sym_false] = ACTIONS(1502), + [anon_sym_NULL] = ACTIONS(1502), + [anon_sym_nullptr] = ACTIONS(1502), + [sym_comment] = ACTIONS(3), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [488] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1470), - [aux_sym_preproc_include_token1] = ACTIONS(1470), - [aux_sym_preproc_def_token1] = ACTIONS(1470), - [aux_sym_preproc_if_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), - [sym_preproc_directive] = ACTIONS(1470), - [anon_sym_LPAREN2] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym___extension__] = ACTIONS(1470), - [anon_sym_typedef] = ACTIONS(1470), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym___attribute__] = ACTIONS(1470), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), - [anon_sym___declspec] = ACTIONS(1470), - [anon_sym___cdecl] = ACTIONS(1470), - [anon_sym___clrcall] = ACTIONS(1470), - [anon_sym___stdcall] = ACTIONS(1470), - [anon_sym___fastcall] = ACTIONS(1470), - [anon_sym___thiscall] = ACTIONS(1470), - [anon_sym___vectorcall] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_signed] = ACTIONS(1470), - [anon_sym_unsigned] = ACTIONS(1470), - [anon_sym_long] = ACTIONS(1470), - [anon_sym_short] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_auto] = ACTIONS(1470), - [anon_sym_register] = ACTIONS(1470), - [anon_sym_inline] = ACTIONS(1470), - [anon_sym___inline] = ACTIONS(1470), - [anon_sym___inline__] = ACTIONS(1470), - [anon_sym___forceinline] = ACTIONS(1470), - [anon_sym_thread_local] = ACTIONS(1470), - [anon_sym___thread] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_constexpr] = ACTIONS(1470), - [anon_sym_volatile] = ACTIONS(1470), - [anon_sym_restrict] = ACTIONS(1470), - [anon_sym___restrict__] = ACTIONS(1470), - [anon_sym__Atomic] = ACTIONS(1470), - [anon_sym__Noreturn] = ACTIONS(1470), - [anon_sym_noreturn] = ACTIONS(1470), - [sym_primitive_type] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_do] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_goto] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_sizeof] = ACTIONS(1470), - [anon_sym___alignof__] = ACTIONS(1470), - [anon_sym___alignof] = ACTIONS(1470), - [anon_sym__alignof] = ACTIONS(1470), - [anon_sym_alignof] = ACTIONS(1470), - [anon_sym__Alignof] = ACTIONS(1470), - [anon_sym_offsetof] = ACTIONS(1470), - [anon_sym__Generic] = ACTIONS(1470), - [anon_sym_asm] = ACTIONS(1470), - [anon_sym___asm__] = ACTIONS(1470), - [sym_number_literal] = ACTIONS(1472), - [anon_sym_L_SQUOTE] = ACTIONS(1472), - [anon_sym_u_SQUOTE] = ACTIONS(1472), - [anon_sym_U_SQUOTE] = ACTIONS(1472), - [anon_sym_u8_SQUOTE] = ACTIONS(1472), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_L_DQUOTE] = ACTIONS(1472), - [anon_sym_u_DQUOTE] = ACTIONS(1472), - [anon_sym_U_DQUOTE] = ACTIONS(1472), - [anon_sym_u8_DQUOTE] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1472), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [anon_sym_NULL] = ACTIONS(1470), - [anon_sym_nullptr] = ACTIONS(1470), + [524] = { + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [489] = { + [525] = { [ts_builtin_sym_end] = ACTIONS(1452), [sym_identifier] = ACTIONS(1450), [aux_sym_preproc_include_token1] = ACTIONS(1450), @@ -69559,289 +73357,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym___extension__] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym___inline] = ACTIONS(1430), - [anon_sym___inline__] = ACTIONS(1430), - [anon_sym___forceinline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym___thread] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym___alignof__] = ACTIONS(1430), - [anon_sym___alignof] = ACTIONS(1430), - [anon_sym__alignof] = ACTIONS(1430), - [anon_sym_alignof] = ACTIONS(1430), - [anon_sym__Alignof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [526] = { + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1490), + [aux_sym_preproc_include_token1] = ACTIONS(1490), + [aux_sym_preproc_def_token1] = ACTIONS(1490), + [aux_sym_preproc_if_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1490), + [sym_preproc_directive] = ACTIONS(1490), + [anon_sym_LPAREN2] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym___extension__] = ACTIONS(1490), + [anon_sym_typedef] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym___attribute__] = ACTIONS(1490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1492), + [anon_sym___declspec] = ACTIONS(1490), + [anon_sym___cdecl] = ACTIONS(1490), + [anon_sym___clrcall] = ACTIONS(1490), + [anon_sym___stdcall] = ACTIONS(1490), + [anon_sym___fastcall] = ACTIONS(1490), + [anon_sym___thiscall] = ACTIONS(1490), + [anon_sym___vectorcall] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_signed] = ACTIONS(1490), + [anon_sym_unsigned] = ACTIONS(1490), + [anon_sym_long] = ACTIONS(1490), + [anon_sym_short] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_auto] = ACTIONS(1490), + [anon_sym_register] = ACTIONS(1490), + [anon_sym_inline] = ACTIONS(1490), + [anon_sym___inline] = ACTIONS(1490), + [anon_sym___inline__] = ACTIONS(1490), + [anon_sym___forceinline] = ACTIONS(1490), + [anon_sym_thread_local] = ACTIONS(1490), + [anon_sym___thread] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_constexpr] = ACTIONS(1490), + [anon_sym_volatile] = ACTIONS(1490), + [anon_sym_restrict] = ACTIONS(1490), + [anon_sym___restrict__] = ACTIONS(1490), + [anon_sym__Atomic] = ACTIONS(1490), + [anon_sym__Noreturn] = ACTIONS(1490), + [anon_sym_noreturn] = ACTIONS(1490), + [sym_primitive_type] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_switch] = ACTIONS(1490), + [anon_sym_case] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_do] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym_DASH_DASH] = ACTIONS(1492), + [anon_sym_PLUS_PLUS] = ACTIONS(1492), + [anon_sym_sizeof] = ACTIONS(1490), + [anon_sym___alignof__] = ACTIONS(1490), + [anon_sym___alignof] = ACTIONS(1490), + [anon_sym__alignof] = ACTIONS(1490), + [anon_sym_alignof] = ACTIONS(1490), + [anon_sym__Alignof] = ACTIONS(1490), + [anon_sym_offsetof] = ACTIONS(1490), + [anon_sym__Generic] = ACTIONS(1490), + [anon_sym_asm] = ACTIONS(1490), + [anon_sym___asm__] = ACTIONS(1490), + [sym_number_literal] = ACTIONS(1492), + [anon_sym_L_SQUOTE] = ACTIONS(1492), + [anon_sym_u_SQUOTE] = ACTIONS(1492), + [anon_sym_U_SQUOTE] = ACTIONS(1492), + [anon_sym_u8_SQUOTE] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_L_DQUOTE] = ACTIONS(1492), + [anon_sym_u_DQUOTE] = ACTIONS(1492), + [anon_sym_U_DQUOTE] = ACTIONS(1492), + [anon_sym_u8_DQUOTE] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1492), + [sym_true] = ACTIONS(1490), + [sym_false] = ACTIONS(1490), + [anon_sym_NULL] = ACTIONS(1490), + [anon_sym_nullptr] = ACTIONS(1490), [sym_comment] = ACTIONS(3), }, - [491] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1486), - [aux_sym_preproc_include_token1] = ACTIONS(1486), - [aux_sym_preproc_def_token1] = ACTIONS(1486), - [aux_sym_preproc_if_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), - [sym_preproc_directive] = ACTIONS(1486), - [anon_sym_LPAREN2] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym___extension__] = ACTIONS(1486), - [anon_sym_typedef] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym___attribute__] = ACTIONS(1486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), - [anon_sym___declspec] = ACTIONS(1486), - [anon_sym___cdecl] = ACTIONS(1486), - [anon_sym___clrcall] = ACTIONS(1486), - [anon_sym___stdcall] = ACTIONS(1486), - [anon_sym___fastcall] = ACTIONS(1486), - [anon_sym___thiscall] = ACTIONS(1486), - [anon_sym___vectorcall] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_signed] = ACTIONS(1486), - [anon_sym_unsigned] = ACTIONS(1486), - [anon_sym_long] = ACTIONS(1486), - [anon_sym_short] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_auto] = ACTIONS(1486), - [anon_sym_register] = ACTIONS(1486), - [anon_sym_inline] = ACTIONS(1486), - [anon_sym___inline] = ACTIONS(1486), - [anon_sym___inline__] = ACTIONS(1486), - [anon_sym___forceinline] = ACTIONS(1486), - [anon_sym_thread_local] = ACTIONS(1486), - [anon_sym___thread] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_constexpr] = ACTIONS(1486), - [anon_sym_volatile] = ACTIONS(1486), - [anon_sym_restrict] = ACTIONS(1486), - [anon_sym___restrict__] = ACTIONS(1486), - [anon_sym__Atomic] = ACTIONS(1486), - [anon_sym__Noreturn] = ACTIONS(1486), - [anon_sym_noreturn] = ACTIONS(1486), - [sym_primitive_type] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_do] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_goto] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_sizeof] = ACTIONS(1486), - [anon_sym___alignof__] = ACTIONS(1486), - [anon_sym___alignof] = ACTIONS(1486), - [anon_sym__alignof] = ACTIONS(1486), - [anon_sym_alignof] = ACTIONS(1486), - [anon_sym__Alignof] = ACTIONS(1486), - [anon_sym_offsetof] = ACTIONS(1486), - [anon_sym__Generic] = ACTIONS(1486), - [anon_sym_asm] = ACTIONS(1486), - [anon_sym___asm__] = ACTIONS(1486), - [sym_number_literal] = ACTIONS(1488), - [anon_sym_L_SQUOTE] = ACTIONS(1488), - [anon_sym_u_SQUOTE] = ACTIONS(1488), - [anon_sym_U_SQUOTE] = ACTIONS(1488), - [anon_sym_u8_SQUOTE] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1488), - [anon_sym_L_DQUOTE] = ACTIONS(1488), - [anon_sym_u_DQUOTE] = ACTIONS(1488), - [anon_sym_U_DQUOTE] = ACTIONS(1488), - [anon_sym_u8_DQUOTE] = ACTIONS(1488), - [anon_sym_DQUOTE] = ACTIONS(1488), - [sym_true] = ACTIONS(1486), - [sym_false] = ACTIONS(1486), - [anon_sym_NULL] = ACTIONS(1486), - [anon_sym_nullptr] = ACTIONS(1486), + [527] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1478), - [aux_sym_preproc_include_token1] = ACTIONS(1478), - [aux_sym_preproc_def_token1] = ACTIONS(1478), - [aux_sym_preproc_if_token1] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), - [sym_preproc_directive] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym___extension__] = ACTIONS(1478), - [anon_sym_typedef] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym___attribute__] = ACTIONS(1478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), - [anon_sym___declspec] = ACTIONS(1478), - [anon_sym___cdecl] = ACTIONS(1478), - [anon_sym___clrcall] = ACTIONS(1478), - [anon_sym___stdcall] = ACTIONS(1478), - [anon_sym___fastcall] = ACTIONS(1478), - [anon_sym___thiscall] = ACTIONS(1478), - [anon_sym___vectorcall] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_signed] = ACTIONS(1478), - [anon_sym_unsigned] = ACTIONS(1478), - [anon_sym_long] = ACTIONS(1478), - [anon_sym_short] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_auto] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym___inline] = ACTIONS(1478), - [anon_sym___inline__] = ACTIONS(1478), - [anon_sym___forceinline] = ACTIONS(1478), - [anon_sym_thread_local] = ACTIONS(1478), - [anon_sym___thread] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_constexpr] = ACTIONS(1478), - [anon_sym_volatile] = ACTIONS(1478), - [anon_sym_restrict] = ACTIONS(1478), - [anon_sym___restrict__] = ACTIONS(1478), - [anon_sym__Atomic] = ACTIONS(1478), - [anon_sym__Noreturn] = ACTIONS(1478), - [anon_sym_noreturn] = ACTIONS(1478), - [sym_primitive_type] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_goto] = ACTIONS(1478), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_sizeof] = ACTIONS(1478), - [anon_sym___alignof__] = ACTIONS(1478), - [anon_sym___alignof] = ACTIONS(1478), - [anon_sym__alignof] = ACTIONS(1478), - [anon_sym_alignof] = ACTIONS(1478), - [anon_sym__Alignof] = ACTIONS(1478), - [anon_sym_offsetof] = ACTIONS(1478), - [anon_sym__Generic] = ACTIONS(1478), - [anon_sym_asm] = ACTIONS(1478), - [anon_sym___asm__] = ACTIONS(1478), - [sym_number_literal] = ACTIONS(1480), - [anon_sym_L_SQUOTE] = ACTIONS(1480), - [anon_sym_u_SQUOTE] = ACTIONS(1480), - [anon_sym_U_SQUOTE] = ACTIONS(1480), - [anon_sym_u8_SQUOTE] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_L_DQUOTE] = ACTIONS(1480), - [anon_sym_u_DQUOTE] = ACTIONS(1480), - [anon_sym_U_DQUOTE] = ACTIONS(1480), - [anon_sym_u8_DQUOTE] = ACTIONS(1480), - [anon_sym_DQUOTE] = ACTIONS(1480), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [anon_sym_NULL] = ACTIONS(1478), - [anon_sym_nullptr] = ACTIONS(1478), + [528] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [493] = { + [529] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [530] = { [ts_builtin_sym_end] = ACTIONS(1428), [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), @@ -69935,477 +73827,383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), - [sym_comment] = ACTIONS(3), - }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1508), - [aux_sym_preproc_include_token1] = ACTIONS(1508), - [aux_sym_preproc_def_token1] = ACTIONS(1508), - [aux_sym_preproc_if_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), - [sym_preproc_directive] = ACTIONS(1508), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym___extension__] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym___attribute__] = ACTIONS(1508), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), - [anon_sym___declspec] = ACTIONS(1508), - [anon_sym___cdecl] = ACTIONS(1508), - [anon_sym___clrcall] = ACTIONS(1508), - [anon_sym___stdcall] = ACTIONS(1508), - [anon_sym___fastcall] = ACTIONS(1508), - [anon_sym___thiscall] = ACTIONS(1508), - [anon_sym___vectorcall] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_signed] = ACTIONS(1508), - [anon_sym_unsigned] = ACTIONS(1508), - [anon_sym_long] = ACTIONS(1508), - [anon_sym_short] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_auto] = ACTIONS(1508), - [anon_sym_register] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym___inline] = ACTIONS(1508), - [anon_sym___inline__] = ACTIONS(1508), - [anon_sym___forceinline] = ACTIONS(1508), - [anon_sym_thread_local] = ACTIONS(1508), - [anon_sym___thread] = ACTIONS(1508), - [anon_sym_const] = ACTIONS(1508), - [anon_sym_constexpr] = ACTIONS(1508), - [anon_sym_volatile] = ACTIONS(1508), - [anon_sym_restrict] = ACTIONS(1508), - [anon_sym___restrict__] = ACTIONS(1508), - [anon_sym__Atomic] = ACTIONS(1508), - [anon_sym__Noreturn] = ACTIONS(1508), - [anon_sym_noreturn] = ACTIONS(1508), - [sym_primitive_type] = ACTIONS(1508), - [anon_sym_enum] = ACTIONS(1508), - [anon_sym_struct] = ACTIONS(1508), - [anon_sym_union] = ACTIONS(1508), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_while] = ACTIONS(1508), - [anon_sym_do] = ACTIONS(1508), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_goto] = ACTIONS(1508), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_sizeof] = ACTIONS(1508), - [anon_sym___alignof__] = ACTIONS(1508), - [anon_sym___alignof] = ACTIONS(1508), - [anon_sym__alignof] = ACTIONS(1508), - [anon_sym_alignof] = ACTIONS(1508), - [anon_sym__Alignof] = ACTIONS(1508), - [anon_sym_offsetof] = ACTIONS(1508), - [anon_sym__Generic] = ACTIONS(1508), - [anon_sym_asm] = ACTIONS(1508), - [anon_sym___asm__] = ACTIONS(1508), - [sym_number_literal] = ACTIONS(1510), - [anon_sym_L_SQUOTE] = ACTIONS(1510), - [anon_sym_u_SQUOTE] = ACTIONS(1510), - [anon_sym_U_SQUOTE] = ACTIONS(1510), - [anon_sym_u8_SQUOTE] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_L_DQUOTE] = ACTIONS(1510), - [anon_sym_u_DQUOTE] = ACTIONS(1510), - [anon_sym_U_DQUOTE] = ACTIONS(1510), - [anon_sym_u8_DQUOTE] = ACTIONS(1510), - [anon_sym_DQUOTE] = ACTIONS(1510), - [sym_true] = ACTIONS(1508), - [sym_false] = ACTIONS(1508), - [anon_sym_NULL] = ACTIONS(1508), - [anon_sym_nullptr] = ACTIONS(1508), - [sym_comment] = ACTIONS(3), - }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [531] = { + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), - }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1466), - [aux_sym_preproc_include_token1] = ACTIONS(1466), - [aux_sym_preproc_def_token1] = ACTIONS(1466), - [aux_sym_preproc_if_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), - [sym_preproc_directive] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym___extension__] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym___attribute__] = ACTIONS(1466), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), - [anon_sym___declspec] = ACTIONS(1466), - [anon_sym___cdecl] = ACTIONS(1466), - [anon_sym___clrcall] = ACTIONS(1466), - [anon_sym___stdcall] = ACTIONS(1466), - [anon_sym___fastcall] = ACTIONS(1466), - [anon_sym___thiscall] = ACTIONS(1466), - [anon_sym___vectorcall] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_signed] = ACTIONS(1466), - [anon_sym_unsigned] = ACTIONS(1466), - [anon_sym_long] = ACTIONS(1466), - [anon_sym_short] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_auto] = ACTIONS(1466), - [anon_sym_register] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym___inline] = ACTIONS(1466), - [anon_sym___inline__] = ACTIONS(1466), - [anon_sym___forceinline] = ACTIONS(1466), - [anon_sym_thread_local] = ACTIONS(1466), - [anon_sym___thread] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_constexpr] = ACTIONS(1466), - [anon_sym_volatile] = ACTIONS(1466), - [anon_sym_restrict] = ACTIONS(1466), - [anon_sym___restrict__] = ACTIONS(1466), - [anon_sym__Atomic] = ACTIONS(1466), - [anon_sym__Noreturn] = ACTIONS(1466), - [anon_sym_noreturn] = ACTIONS(1466), - [sym_primitive_type] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_do] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_goto] = ACTIONS(1466), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_sizeof] = ACTIONS(1466), - [anon_sym___alignof__] = ACTIONS(1466), - [anon_sym___alignof] = ACTIONS(1466), - [anon_sym__alignof] = ACTIONS(1466), - [anon_sym_alignof] = ACTIONS(1466), - [anon_sym__Alignof] = ACTIONS(1466), - [anon_sym_offsetof] = ACTIONS(1466), - [anon_sym__Generic] = ACTIONS(1466), - [anon_sym_asm] = ACTIONS(1466), - [anon_sym___asm__] = ACTIONS(1466), - [sym_number_literal] = ACTIONS(1468), - [anon_sym_L_SQUOTE] = ACTIONS(1468), - [anon_sym_u_SQUOTE] = ACTIONS(1468), - [anon_sym_U_SQUOTE] = ACTIONS(1468), - [anon_sym_u8_SQUOTE] = ACTIONS(1468), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_L_DQUOTE] = ACTIONS(1468), - [anon_sym_u_DQUOTE] = ACTIONS(1468), - [anon_sym_U_DQUOTE] = ACTIONS(1468), - [anon_sym_u8_DQUOTE] = ACTIONS(1468), - [anon_sym_DQUOTE] = ACTIONS(1468), - [sym_true] = ACTIONS(1466), - [sym_false] = ACTIONS(1466), - [anon_sym_NULL] = ACTIONS(1466), - [anon_sym_nullptr] = ACTIONS(1466), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1494), + [aux_sym_preproc_include_token1] = ACTIONS(1494), + [aux_sym_preproc_def_token1] = ACTIONS(1494), + [aux_sym_preproc_if_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1494), + [sym_preproc_directive] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym___extension__] = ACTIONS(1494), + [anon_sym_typedef] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym___attribute__] = ACTIONS(1494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1496), + [anon_sym___declspec] = ACTIONS(1494), + [anon_sym___cdecl] = ACTIONS(1494), + [anon_sym___clrcall] = ACTIONS(1494), + [anon_sym___stdcall] = ACTIONS(1494), + [anon_sym___fastcall] = ACTIONS(1494), + [anon_sym___thiscall] = ACTIONS(1494), + [anon_sym___vectorcall] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_signed] = ACTIONS(1494), + [anon_sym_unsigned] = ACTIONS(1494), + [anon_sym_long] = ACTIONS(1494), + [anon_sym_short] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_auto] = ACTIONS(1494), + [anon_sym_register] = ACTIONS(1494), + [anon_sym_inline] = ACTIONS(1494), + [anon_sym___inline] = ACTIONS(1494), + [anon_sym___inline__] = ACTIONS(1494), + [anon_sym___forceinline] = ACTIONS(1494), + [anon_sym_thread_local] = ACTIONS(1494), + [anon_sym___thread] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_constexpr] = ACTIONS(1494), + [anon_sym_volatile] = ACTIONS(1494), + [anon_sym_restrict] = ACTIONS(1494), + [anon_sym___restrict__] = ACTIONS(1494), + [anon_sym__Atomic] = ACTIONS(1494), + [anon_sym__Noreturn] = ACTIONS(1494), + [anon_sym_noreturn] = ACTIONS(1494), + [sym_primitive_type] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1494), + [anon_sym_case] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_do] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_goto] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1496), + [anon_sym_PLUS_PLUS] = ACTIONS(1496), + [anon_sym_sizeof] = ACTIONS(1494), + [anon_sym___alignof__] = ACTIONS(1494), + [anon_sym___alignof] = ACTIONS(1494), + [anon_sym__alignof] = ACTIONS(1494), + [anon_sym_alignof] = ACTIONS(1494), + [anon_sym__Alignof] = ACTIONS(1494), + [anon_sym_offsetof] = ACTIONS(1494), + [anon_sym__Generic] = ACTIONS(1494), + [anon_sym_asm] = ACTIONS(1494), + [anon_sym___asm__] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(1496), + [anon_sym_L_SQUOTE] = ACTIONS(1496), + [anon_sym_u_SQUOTE] = ACTIONS(1496), + [anon_sym_U_SQUOTE] = ACTIONS(1496), + [anon_sym_u8_SQUOTE] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_L_DQUOTE] = ACTIONS(1496), + [anon_sym_u_DQUOTE] = ACTIONS(1496), + [anon_sym_U_DQUOTE] = ACTIONS(1496), + [anon_sym_u8_DQUOTE] = ACTIONS(1496), + [anon_sym_DQUOTE] = ACTIONS(1496), + [sym_true] = ACTIONS(1494), + [sym_false] = ACTIONS(1494), + [anon_sym_NULL] = ACTIONS(1494), + [anon_sym_nullptr] = ACTIONS(1494), [sym_comment] = ACTIONS(3), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1512), - [aux_sym_preproc_include_token1] = ACTIONS(1512), - [aux_sym_preproc_def_token1] = ACTIONS(1512), - [aux_sym_preproc_if_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), - [sym_preproc_directive] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym___extension__] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), - [anon_sym___declspec] = ACTIONS(1512), - [anon_sym___cdecl] = ACTIONS(1512), - [anon_sym___clrcall] = ACTIONS(1512), - [anon_sym___stdcall] = ACTIONS(1512), - [anon_sym___fastcall] = ACTIONS(1512), - [anon_sym___thiscall] = ACTIONS(1512), - [anon_sym___vectorcall] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_signed] = ACTIONS(1512), - [anon_sym_unsigned] = ACTIONS(1512), - [anon_sym_long] = ACTIONS(1512), - [anon_sym_short] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_auto] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym___inline] = ACTIONS(1512), - [anon_sym___inline__] = ACTIONS(1512), - [anon_sym___forceinline] = ACTIONS(1512), - [anon_sym_thread_local] = ACTIONS(1512), - [anon_sym___thread] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_constexpr] = ACTIONS(1512), - [anon_sym_volatile] = ACTIONS(1512), - [anon_sym_restrict] = ACTIONS(1512), - [anon_sym___restrict__] = ACTIONS(1512), - [anon_sym__Atomic] = ACTIONS(1512), - [anon_sym__Noreturn] = ACTIONS(1512), - [anon_sym_noreturn] = ACTIONS(1512), - [sym_primitive_type] = ACTIONS(1512), - [anon_sym_enum] = ACTIONS(1512), - [anon_sym_struct] = ACTIONS(1512), - [anon_sym_union] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_goto] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_sizeof] = ACTIONS(1512), - [anon_sym___alignof__] = ACTIONS(1512), - [anon_sym___alignof] = ACTIONS(1512), - [anon_sym__alignof] = ACTIONS(1512), - [anon_sym_alignof] = ACTIONS(1512), - [anon_sym__Alignof] = ACTIONS(1512), - [anon_sym_offsetof] = ACTIONS(1512), - [anon_sym__Generic] = ACTIONS(1512), - [anon_sym_asm] = ACTIONS(1512), - [anon_sym___asm__] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1514), - [anon_sym_L_SQUOTE] = ACTIONS(1514), - [anon_sym_u_SQUOTE] = ACTIONS(1514), - [anon_sym_U_SQUOTE] = ACTIONS(1514), - [anon_sym_u8_SQUOTE] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_L_DQUOTE] = ACTIONS(1514), - [anon_sym_u_DQUOTE] = ACTIONS(1514), - [anon_sym_U_DQUOTE] = ACTIONS(1514), - [anon_sym_u8_DQUOTE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_true] = ACTIONS(1512), - [sym_false] = ACTIONS(1512), - [anon_sym_NULL] = ACTIONS(1512), - [anon_sym_nullptr] = ACTIONS(1512), + [533] = { + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1518), + [aux_sym_preproc_include_token1] = ACTIONS(1518), + [aux_sym_preproc_def_token1] = ACTIONS(1518), + [aux_sym_preproc_if_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1518), + [sym_preproc_directive] = ACTIONS(1518), + [anon_sym_LPAREN2] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_TILDE] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym___extension__] = ACTIONS(1518), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym___attribute__] = ACTIONS(1518), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1520), + [anon_sym___declspec] = ACTIONS(1518), + [anon_sym___cdecl] = ACTIONS(1518), + [anon_sym___clrcall] = ACTIONS(1518), + [anon_sym___stdcall] = ACTIONS(1518), + [anon_sym___fastcall] = ACTIONS(1518), + [anon_sym___thiscall] = ACTIONS(1518), + [anon_sym___vectorcall] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_signed] = ACTIONS(1518), + [anon_sym_unsigned] = ACTIONS(1518), + [anon_sym_long] = ACTIONS(1518), + [anon_sym_short] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_auto] = ACTIONS(1518), + [anon_sym_register] = ACTIONS(1518), + [anon_sym_inline] = ACTIONS(1518), + [anon_sym___inline] = ACTIONS(1518), + [anon_sym___inline__] = ACTIONS(1518), + [anon_sym___forceinline] = ACTIONS(1518), + [anon_sym_thread_local] = ACTIONS(1518), + [anon_sym___thread] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_constexpr] = ACTIONS(1518), + [anon_sym_volatile] = ACTIONS(1518), + [anon_sym_restrict] = ACTIONS(1518), + [anon_sym___restrict__] = ACTIONS(1518), + [anon_sym__Atomic] = ACTIONS(1518), + [anon_sym__Noreturn] = ACTIONS(1518), + [anon_sym_noreturn] = ACTIONS(1518), + [sym_primitive_type] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_switch] = ACTIONS(1518), + [anon_sym_case] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_do] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_goto] = ACTIONS(1518), + [anon_sym_DASH_DASH] = ACTIONS(1520), + [anon_sym_PLUS_PLUS] = ACTIONS(1520), + [anon_sym_sizeof] = ACTIONS(1518), + [anon_sym___alignof__] = ACTIONS(1518), + [anon_sym___alignof] = ACTIONS(1518), + [anon_sym__alignof] = ACTIONS(1518), + [anon_sym_alignof] = ACTIONS(1518), + [anon_sym__Alignof] = ACTIONS(1518), + [anon_sym_offsetof] = ACTIONS(1518), + [anon_sym__Generic] = ACTIONS(1518), + [anon_sym_asm] = ACTIONS(1518), + [anon_sym___asm__] = ACTIONS(1518), + [sym_number_literal] = ACTIONS(1520), + [anon_sym_L_SQUOTE] = ACTIONS(1520), + [anon_sym_u_SQUOTE] = ACTIONS(1520), + [anon_sym_U_SQUOTE] = ACTIONS(1520), + [anon_sym_u8_SQUOTE] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_L_DQUOTE] = ACTIONS(1520), + [anon_sym_u_DQUOTE] = ACTIONS(1520), + [anon_sym_U_DQUOTE] = ACTIONS(1520), + [anon_sym_u8_DQUOTE] = ACTIONS(1520), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_true] = ACTIONS(1518), + [sym_false] = ACTIONS(1518), + [anon_sym_NULL] = ACTIONS(1518), + [anon_sym_nullptr] = ACTIONS(1518), [sym_comment] = ACTIONS(3), }, - [499] = { + [534] = { + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1522), + [aux_sym_preproc_include_token1] = ACTIONS(1522), + [aux_sym_preproc_def_token1] = ACTIONS(1522), + [aux_sym_preproc_if_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), + [sym_preproc_directive] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym___extension__] = ACTIONS(1522), + [anon_sym_typedef] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1522), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1524), + [anon_sym___declspec] = ACTIONS(1522), + [anon_sym___cdecl] = ACTIONS(1522), + [anon_sym___clrcall] = ACTIONS(1522), + [anon_sym___stdcall] = ACTIONS(1522), + [anon_sym___fastcall] = ACTIONS(1522), + [anon_sym___thiscall] = ACTIONS(1522), + [anon_sym___vectorcall] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_signed] = ACTIONS(1522), + [anon_sym_unsigned] = ACTIONS(1522), + [anon_sym_long] = ACTIONS(1522), + [anon_sym_short] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_auto] = ACTIONS(1522), + [anon_sym_register] = ACTIONS(1522), + [anon_sym_inline] = ACTIONS(1522), + [anon_sym___inline] = ACTIONS(1522), + [anon_sym___inline__] = ACTIONS(1522), + [anon_sym___forceinline] = ACTIONS(1522), + [anon_sym_thread_local] = ACTIONS(1522), + [anon_sym___thread] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_constexpr] = ACTIONS(1522), + [anon_sym_volatile] = ACTIONS(1522), + [anon_sym_restrict] = ACTIONS(1522), + [anon_sym___restrict__] = ACTIONS(1522), + [anon_sym__Atomic] = ACTIONS(1522), + [anon_sym__Noreturn] = ACTIONS(1522), + [anon_sym_noreturn] = ACTIONS(1522), + [sym_primitive_type] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_switch] = ACTIONS(1522), + [anon_sym_case] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_PLUS_PLUS] = ACTIONS(1524), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(1522), + [anon_sym___alignof] = ACTIONS(1522), + [anon_sym__alignof] = ACTIONS(1522), + [anon_sym_alignof] = ACTIONS(1522), + [anon_sym__Alignof] = ACTIONS(1522), + [anon_sym_offsetof] = ACTIONS(1522), + [anon_sym__Generic] = ACTIONS(1522), + [anon_sym_asm] = ACTIONS(1522), + [anon_sym___asm__] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1524), + [anon_sym_L_SQUOTE] = ACTIONS(1524), + [anon_sym_u_SQUOTE] = ACTIONS(1524), + [anon_sym_U_SQUOTE] = ACTIONS(1524), + [anon_sym_u8_SQUOTE] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_L_DQUOTE] = ACTIONS(1524), + [anon_sym_u_DQUOTE] = ACTIONS(1524), + [anon_sym_U_DQUOTE] = ACTIONS(1524), + [anon_sym_u8_DQUOTE] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym_true] = ACTIONS(1522), + [sym_false] = ACTIONS(1522), + [anon_sym_NULL] = ACTIONS(1522), + [anon_sym_nullptr] = ACTIONS(1522), + [sym_comment] = ACTIONS(3), + }, + [535] = { [ts_builtin_sym_end] = ACTIONS(1460), [sym_identifier] = ACTIONS(1458), [aux_sym_preproc_include_token1] = ACTIONS(1458), @@ -70499,701 +74297,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1446), - [aux_sym_preproc_include_token1] = ACTIONS(1446), - [aux_sym_preproc_def_token1] = ACTIONS(1446), - [aux_sym_preproc_if_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), - [sym_preproc_directive] = ACTIONS(1446), - [anon_sym_LPAREN2] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym___extension__] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym___attribute__] = ACTIONS(1446), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), - [anon_sym___declspec] = ACTIONS(1446), - [anon_sym___cdecl] = ACTIONS(1446), - [anon_sym___clrcall] = ACTIONS(1446), - [anon_sym___stdcall] = ACTIONS(1446), - [anon_sym___fastcall] = ACTIONS(1446), - [anon_sym___thiscall] = ACTIONS(1446), - [anon_sym___vectorcall] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_signed] = ACTIONS(1446), - [anon_sym_unsigned] = ACTIONS(1446), - [anon_sym_long] = ACTIONS(1446), - [anon_sym_short] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_auto] = ACTIONS(1446), - [anon_sym_register] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym___inline] = ACTIONS(1446), - [anon_sym___inline__] = ACTIONS(1446), - [anon_sym___forceinline] = ACTIONS(1446), - [anon_sym_thread_local] = ACTIONS(1446), - [anon_sym___thread] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_constexpr] = ACTIONS(1446), - [anon_sym_volatile] = ACTIONS(1446), - [anon_sym_restrict] = ACTIONS(1446), - [anon_sym___restrict__] = ACTIONS(1446), - [anon_sym__Atomic] = ACTIONS(1446), - [anon_sym__Noreturn] = ACTIONS(1446), - [anon_sym_noreturn] = ACTIONS(1446), - [sym_primitive_type] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_do] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_goto] = ACTIONS(1446), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym___alignof__] = ACTIONS(1446), - [anon_sym___alignof] = ACTIONS(1446), - [anon_sym__alignof] = ACTIONS(1446), - [anon_sym_alignof] = ACTIONS(1446), - [anon_sym__Alignof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(1446), - [anon_sym__Generic] = ACTIONS(1446), - [anon_sym_asm] = ACTIONS(1446), - [anon_sym___asm__] = ACTIONS(1446), - [sym_number_literal] = ACTIONS(1448), - [anon_sym_L_SQUOTE] = ACTIONS(1448), - [anon_sym_u_SQUOTE] = ACTIONS(1448), - [anon_sym_U_SQUOTE] = ACTIONS(1448), - [anon_sym_u8_SQUOTE] = ACTIONS(1448), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_L_DQUOTE] = ACTIONS(1448), - [anon_sym_u_DQUOTE] = ACTIONS(1448), - [anon_sym_U_DQUOTE] = ACTIONS(1448), - [anon_sym_u8_DQUOTE] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_true] = ACTIONS(1446), - [sym_false] = ACTIONS(1446), - [anon_sym_NULL] = ACTIONS(1446), - [anon_sym_nullptr] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1462), - [aux_sym_preproc_include_token1] = ACTIONS(1462), - [aux_sym_preproc_def_token1] = ACTIONS(1462), - [aux_sym_preproc_if_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), - [sym_preproc_directive] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym___extension__] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym___attribute__] = ACTIONS(1462), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), - [anon_sym___declspec] = ACTIONS(1462), - [anon_sym___cdecl] = ACTIONS(1462), - [anon_sym___clrcall] = ACTIONS(1462), - [anon_sym___stdcall] = ACTIONS(1462), - [anon_sym___fastcall] = ACTIONS(1462), - [anon_sym___thiscall] = ACTIONS(1462), - [anon_sym___vectorcall] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_signed] = ACTIONS(1462), - [anon_sym_unsigned] = ACTIONS(1462), - [anon_sym_long] = ACTIONS(1462), - [anon_sym_short] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_auto] = ACTIONS(1462), - [anon_sym_register] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym___inline] = ACTIONS(1462), - [anon_sym___inline__] = ACTIONS(1462), - [anon_sym___forceinline] = ACTIONS(1462), - [anon_sym_thread_local] = ACTIONS(1462), - [anon_sym___thread] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_constexpr] = ACTIONS(1462), - [anon_sym_volatile] = ACTIONS(1462), - [anon_sym_restrict] = ACTIONS(1462), - [anon_sym___restrict__] = ACTIONS(1462), - [anon_sym__Atomic] = ACTIONS(1462), - [anon_sym__Noreturn] = ACTIONS(1462), - [anon_sym_noreturn] = ACTIONS(1462), - [sym_primitive_type] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_goto] = ACTIONS(1462), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_sizeof] = ACTIONS(1462), - [anon_sym___alignof__] = ACTIONS(1462), - [anon_sym___alignof] = ACTIONS(1462), - [anon_sym__alignof] = ACTIONS(1462), - [anon_sym_alignof] = ACTIONS(1462), - [anon_sym__Alignof] = ACTIONS(1462), - [anon_sym_offsetof] = ACTIONS(1462), - [anon_sym__Generic] = ACTIONS(1462), - [anon_sym_asm] = ACTIONS(1462), - [anon_sym___asm__] = ACTIONS(1462), - [sym_number_literal] = ACTIONS(1464), - [anon_sym_L_SQUOTE] = ACTIONS(1464), - [anon_sym_u_SQUOTE] = ACTIONS(1464), - [anon_sym_U_SQUOTE] = ACTIONS(1464), - [anon_sym_u8_SQUOTE] = ACTIONS(1464), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_L_DQUOTE] = ACTIONS(1464), - [anon_sym_u_DQUOTE] = ACTIONS(1464), - [anon_sym_U_DQUOTE] = ACTIONS(1464), - [anon_sym_u8_DQUOTE] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym_true] = ACTIONS(1462), - [sym_false] = ACTIONS(1462), - [anon_sym_NULL] = ACTIONS(1462), - [anon_sym_nullptr] = ACTIONS(1462), - [sym_comment] = ACTIONS(3), - }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [aux_sym_preproc_include_token1] = ACTIONS(1911), - [aux_sym_preproc_def_token1] = ACTIONS(1911), - [aux_sym_preproc_if_token1] = ACTIONS(1911), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1911), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1911), - [sym_preproc_directive] = ACTIONS(1911), - [anon_sym_LPAREN2] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym___extension__] = ACTIONS(1911), - [anon_sym_typedef] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym___attribute__] = ACTIONS(1911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), - [anon_sym___declspec] = ACTIONS(1911), - [anon_sym___cdecl] = ACTIONS(1911), - [anon_sym___clrcall] = ACTIONS(1911), - [anon_sym___stdcall] = ACTIONS(1911), - [anon_sym___fastcall] = ACTIONS(1911), - [anon_sym___thiscall] = ACTIONS(1911), - [anon_sym___vectorcall] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_signed] = ACTIONS(1911), - [anon_sym_unsigned] = ACTIONS(1911), - [anon_sym_long] = ACTIONS(1911), - [anon_sym_short] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_auto] = ACTIONS(1911), - [anon_sym_register] = ACTIONS(1911), - [anon_sym_inline] = ACTIONS(1911), - [anon_sym___inline] = ACTIONS(1911), - [anon_sym___inline__] = ACTIONS(1911), - [anon_sym___forceinline] = ACTIONS(1911), - [anon_sym_thread_local] = ACTIONS(1911), - [anon_sym___thread] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_constexpr] = ACTIONS(1911), - [anon_sym_volatile] = ACTIONS(1911), - [anon_sym_restrict] = ACTIONS(1911), - [anon_sym___restrict__] = ACTIONS(1911), - [anon_sym__Atomic] = ACTIONS(1911), - [anon_sym__Noreturn] = ACTIONS(1911), - [anon_sym_noreturn] = ACTIONS(1911), - [sym_primitive_type] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_switch] = ACTIONS(1911), - [anon_sym_case] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_do] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_goto] = ACTIONS(1911), - [anon_sym_DASH_DASH] = ACTIONS(1909), - [anon_sym_PLUS_PLUS] = ACTIONS(1909), - [anon_sym_sizeof] = ACTIONS(1911), - [anon_sym___alignof__] = ACTIONS(1911), - [anon_sym___alignof] = ACTIONS(1911), - [anon_sym__alignof] = ACTIONS(1911), - [anon_sym_alignof] = ACTIONS(1911), - [anon_sym__Alignof] = ACTIONS(1911), - [anon_sym_offsetof] = ACTIONS(1911), - [anon_sym__Generic] = ACTIONS(1911), - [anon_sym_asm] = ACTIONS(1911), - [anon_sym___asm__] = ACTIONS(1911), - [sym_number_literal] = ACTIONS(1909), - [anon_sym_L_SQUOTE] = ACTIONS(1909), - [anon_sym_u_SQUOTE] = ACTIONS(1909), - [anon_sym_U_SQUOTE] = ACTIONS(1909), - [anon_sym_u8_SQUOTE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1909), - [anon_sym_L_DQUOTE] = ACTIONS(1909), - [anon_sym_u_DQUOTE] = ACTIONS(1909), - [anon_sym_U_DQUOTE] = ACTIONS(1909), - [anon_sym_u8_DQUOTE] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [anon_sym_NULL] = ACTIONS(1911), - [anon_sym_nullptr] = ACTIONS(1911), + [536] = { + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1506), + [aux_sym_preproc_include_token1] = ACTIONS(1506), + [aux_sym_preproc_def_token1] = ACTIONS(1506), + [aux_sym_preproc_if_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1506), + [sym_preproc_directive] = ACTIONS(1506), + [anon_sym_LPAREN2] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym___extension__] = ACTIONS(1506), + [anon_sym_typedef] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym___attribute__] = ACTIONS(1506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1508), + [anon_sym___declspec] = ACTIONS(1506), + [anon_sym___cdecl] = ACTIONS(1506), + [anon_sym___clrcall] = ACTIONS(1506), + [anon_sym___stdcall] = ACTIONS(1506), + [anon_sym___fastcall] = ACTIONS(1506), + [anon_sym___thiscall] = ACTIONS(1506), + [anon_sym___vectorcall] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_signed] = ACTIONS(1506), + [anon_sym_unsigned] = ACTIONS(1506), + [anon_sym_long] = ACTIONS(1506), + [anon_sym_short] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_auto] = ACTIONS(1506), + [anon_sym_register] = ACTIONS(1506), + [anon_sym_inline] = ACTIONS(1506), + [anon_sym___inline] = ACTIONS(1506), + [anon_sym___inline__] = ACTIONS(1506), + [anon_sym___forceinline] = ACTIONS(1506), + [anon_sym_thread_local] = ACTIONS(1506), + [anon_sym___thread] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_constexpr] = ACTIONS(1506), + [anon_sym_volatile] = ACTIONS(1506), + [anon_sym_restrict] = ACTIONS(1506), + [anon_sym___restrict__] = ACTIONS(1506), + [anon_sym__Atomic] = ACTIONS(1506), + [anon_sym__Noreturn] = ACTIONS(1506), + [anon_sym_noreturn] = ACTIONS(1506), + [sym_primitive_type] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_do] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_goto] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(1506), + [anon_sym___alignof] = ACTIONS(1506), + [anon_sym__alignof] = ACTIONS(1506), + [anon_sym_alignof] = ACTIONS(1506), + [anon_sym__Alignof] = ACTIONS(1506), + [anon_sym_offsetof] = ACTIONS(1506), + [anon_sym__Generic] = ACTIONS(1506), + [anon_sym_asm] = ACTIONS(1506), + [anon_sym___asm__] = ACTIONS(1506), + [sym_number_literal] = ACTIONS(1508), + [anon_sym_L_SQUOTE] = ACTIONS(1508), + [anon_sym_u_SQUOTE] = ACTIONS(1508), + [anon_sym_U_SQUOTE] = ACTIONS(1508), + [anon_sym_u8_SQUOTE] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_L_DQUOTE] = ACTIONS(1508), + [anon_sym_u_DQUOTE] = ACTIONS(1508), + [anon_sym_U_DQUOTE] = ACTIONS(1508), + [anon_sym_u8_DQUOTE] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym_true] = ACTIONS(1506), + [sym_false] = ACTIONS(1506), + [anon_sym_NULL] = ACTIONS(1506), + [anon_sym_nullptr] = ACTIONS(1506), [sym_comment] = ACTIONS(3), }, - [505] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1516), - [aux_sym_preproc_def_token1] = ACTIONS(1516), - [aux_sym_preproc_if_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), - [sym_preproc_directive] = ACTIONS(1516), - [anon_sym_LPAREN2] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym___extension__] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym___attribute__] = ACTIONS(1516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), - [anon_sym___declspec] = ACTIONS(1516), - [anon_sym___cdecl] = ACTIONS(1516), - [anon_sym___clrcall] = ACTIONS(1516), - [anon_sym___stdcall] = ACTIONS(1516), - [anon_sym___fastcall] = ACTIONS(1516), - [anon_sym___thiscall] = ACTIONS(1516), - [anon_sym___vectorcall] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_signed] = ACTIONS(1516), - [anon_sym_unsigned] = ACTIONS(1516), - [anon_sym_long] = ACTIONS(1516), - [anon_sym_short] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_auto] = ACTIONS(1516), - [anon_sym_register] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym___inline] = ACTIONS(1516), - [anon_sym___inline__] = ACTIONS(1516), - [anon_sym___forceinline] = ACTIONS(1516), - [anon_sym_thread_local] = ACTIONS(1516), - [anon_sym___thread] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_constexpr] = ACTIONS(1516), - [anon_sym_volatile] = ACTIONS(1516), - [anon_sym_restrict] = ACTIONS(1516), - [anon_sym___restrict__] = ACTIONS(1516), - [anon_sym__Atomic] = ACTIONS(1516), - [anon_sym__Noreturn] = ACTIONS(1516), - [anon_sym_noreturn] = ACTIONS(1516), - [sym_primitive_type] = ACTIONS(1516), - [anon_sym_enum] = ACTIONS(1516), - [anon_sym_struct] = ACTIONS(1516), - [anon_sym_union] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_do] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_goto] = ACTIONS(1516), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym___alignof__] = ACTIONS(1516), - [anon_sym___alignof] = ACTIONS(1516), - [anon_sym__alignof] = ACTIONS(1516), - [anon_sym_alignof] = ACTIONS(1516), - [anon_sym__Alignof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1516), - [anon_sym__Generic] = ACTIONS(1516), - [anon_sym_asm] = ACTIONS(1516), - [anon_sym___asm__] = ACTIONS(1516), - [sym_number_literal] = ACTIONS(1518), - [anon_sym_L_SQUOTE] = ACTIONS(1518), - [anon_sym_u_SQUOTE] = ACTIONS(1518), - [anon_sym_U_SQUOTE] = ACTIONS(1518), - [anon_sym_u8_SQUOTE] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_L_DQUOTE] = ACTIONS(1518), - [anon_sym_u_DQUOTE] = ACTIONS(1518), - [anon_sym_U_DQUOTE] = ACTIONS(1518), - [anon_sym_u8_DQUOTE] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym_true] = ACTIONS(1516), - [sym_false] = ACTIONS(1516), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [537] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2221), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1454), - [aux_sym_preproc_include_token1] = ACTIONS(1454), - [aux_sym_preproc_def_token1] = ACTIONS(1454), - [aux_sym_preproc_if_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), - [sym_preproc_directive] = ACTIONS(1454), - [anon_sym_LPAREN2] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym___extension__] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym___attribute__] = ACTIONS(1454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), - [anon_sym___declspec] = ACTIONS(1454), - [anon_sym___cdecl] = ACTIONS(1454), - [anon_sym___clrcall] = ACTIONS(1454), - [anon_sym___stdcall] = ACTIONS(1454), - [anon_sym___fastcall] = ACTIONS(1454), - [anon_sym___thiscall] = ACTIONS(1454), - [anon_sym___vectorcall] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_signed] = ACTIONS(1454), - [anon_sym_unsigned] = ACTIONS(1454), - [anon_sym_long] = ACTIONS(1454), - [anon_sym_short] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_auto] = ACTIONS(1454), - [anon_sym_register] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym___inline] = ACTIONS(1454), - [anon_sym___inline__] = ACTIONS(1454), - [anon_sym___forceinline] = ACTIONS(1454), - [anon_sym_thread_local] = ACTIONS(1454), - [anon_sym___thread] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_constexpr] = ACTIONS(1454), - [anon_sym_volatile] = ACTIONS(1454), - [anon_sym_restrict] = ACTIONS(1454), - [anon_sym___restrict__] = ACTIONS(1454), - [anon_sym__Atomic] = ACTIONS(1454), - [anon_sym__Noreturn] = ACTIONS(1454), - [anon_sym_noreturn] = ACTIONS(1454), - [sym_primitive_type] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_goto] = ACTIONS(1454), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_sizeof] = ACTIONS(1454), - [anon_sym___alignof__] = ACTIONS(1454), - [anon_sym___alignof] = ACTIONS(1454), - [anon_sym__alignof] = ACTIONS(1454), - [anon_sym_alignof] = ACTIONS(1454), - [anon_sym__Alignof] = ACTIONS(1454), - [anon_sym_offsetof] = ACTIONS(1454), - [anon_sym__Generic] = ACTIONS(1454), - [anon_sym_asm] = ACTIONS(1454), - [anon_sym___asm__] = ACTIONS(1454), - [sym_number_literal] = ACTIONS(1456), - [anon_sym_L_SQUOTE] = ACTIONS(1456), - [anon_sym_u_SQUOTE] = ACTIONS(1456), - [anon_sym_U_SQUOTE] = ACTIONS(1456), - [anon_sym_u8_SQUOTE] = ACTIONS(1456), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_L_DQUOTE] = ACTIONS(1456), - [anon_sym_u_DQUOTE] = ACTIONS(1456), - [anon_sym_U_DQUOTE] = ACTIONS(1456), - [anon_sym_u8_DQUOTE] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_true] = ACTIONS(1454), - [sym_false] = ACTIONS(1454), - [anon_sym_NULL] = ACTIONS(1454), - [anon_sym_nullptr] = ACTIONS(1454), + [538] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2142), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [507] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2245), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [539] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1288), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2157), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2303), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71202,10 +74616,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71215,7 +74629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71247,43 +74661,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [508] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2254), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [540] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1288), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2157), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2200), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71292,10 +74706,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71305,7 +74719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71337,43 +74751,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [509] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2123), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [541] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2143), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71382,10 +74796,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71395,7 +74809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71427,43 +74841,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [510] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2210), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [542] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2394), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71472,10 +74886,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71485,7 +74899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71517,43 +74931,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2064), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [543] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2300), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71562,10 +74976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71575,7 +74989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71607,43 +75021,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [512] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2087), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [544] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2164), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71652,10 +75066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71665,7 +75079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71697,43 +75111,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [513] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1294), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2193), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2052), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [545] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1288), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2157), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2139), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71742,10 +75156,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71755,7 +75169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71787,43 +75201,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2037), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [546] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2346), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71832,10 +75246,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71845,7 +75259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71877,43 +75291,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [515] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2038), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [547] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1288), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2157), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2156), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71922,10 +75336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -71935,7 +75349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -71967,43 +75381,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [516] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1294), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2193), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2045), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [548] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2195), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72012,10 +75426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72025,7 +75439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72057,43 +75471,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1294), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2193), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2033), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [549] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2153), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72102,10 +75516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72115,7 +75529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72147,43 +75561,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [518] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2065), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [550] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2232), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72192,10 +75606,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72205,7 +75619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72237,43 +75651,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [519] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2269), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [551] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2367), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72282,10 +75696,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72295,7 +75709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72327,43 +75741,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [520] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2098), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), + [552] = { + [sym_type_qualifier] = STATE(1373), + [sym__type_specifier] = STATE(1398), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__expression] = STATE(1327), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_comma_expression] = STATE(2222), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_type_descriptor] = STATE(2274), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__type_definition_type_repeat1] = STATE(1373), + [aux_sym_sized_type_specifier_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(1929), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72372,10 +75786,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), + [anon_sym_signed] = ACTIONS(1931), + [anon_sym_unsigned] = ACTIONS(1931), + [anon_sym_long] = ACTIONS(1931), + [anon_sym_short] = ACTIONS(1931), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -72385,7 +75799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), + [anon_sym_enum] = ACTIONS(1933), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -72417,160 +75831,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [521] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2139), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2138), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [553] = { + [sym_identifier] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1937), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1937), + [anon_sym_SEMI] = ACTIONS(1937), + [anon_sym___extension__] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym___attribute__] = ACTIONS(1935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1937), + [anon_sym___declspec] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_signed] = ACTIONS(1935), + [anon_sym_unsigned] = ACTIONS(1935), + [anon_sym_long] = ACTIONS(1935), + [anon_sym_short] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_EQ] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_auto] = ACTIONS(1935), + [anon_sym_register] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym___inline] = ACTIONS(1935), + [anon_sym___inline__] = ACTIONS(1935), + [anon_sym___forceinline] = ACTIONS(1935), + [anon_sym_thread_local] = ACTIONS(1935), + [anon_sym___thread] = ACTIONS(1935), + [anon_sym_const] = ACTIONS(1935), + [anon_sym_constexpr] = ACTIONS(1935), + [anon_sym_volatile] = ACTIONS(1935), + [anon_sym_restrict] = ACTIONS(1935), + [anon_sym___restrict__] = ACTIONS(1935), + [anon_sym__Atomic] = ACTIONS(1935), + [anon_sym__Noreturn] = ACTIONS(1935), + [anon_sym_noreturn] = ACTIONS(1935), + [sym_primitive_type] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_COLON] = ACTIONS(1937), + [anon_sym_struct] = ACTIONS(1935), + [anon_sym_union] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_goto] = ACTIONS(1935), + [anon_sym___try] = ACTIONS(1935), + [anon_sym___leave] = ACTIONS(1935), + [anon_sym_DASH_DASH] = ACTIONS(1937), + [anon_sym_PLUS_PLUS] = ACTIONS(1937), + [anon_sym_sizeof] = ACTIONS(1935), + [anon_sym___alignof__] = ACTIONS(1935), + [anon_sym___alignof] = ACTIONS(1935), + [anon_sym__alignof] = ACTIONS(1935), + [anon_sym_alignof] = ACTIONS(1935), + [anon_sym__Alignof] = ACTIONS(1935), + [anon_sym_offsetof] = ACTIONS(1935), + [anon_sym__Generic] = ACTIONS(1935), + [anon_sym_asm] = ACTIONS(1935), + [anon_sym___asm__] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(1937), + [anon_sym_L_SQUOTE] = ACTIONS(1937), + [anon_sym_u_SQUOTE] = ACTIONS(1937), + [anon_sym_U_SQUOTE] = ACTIONS(1937), + [anon_sym_u8_SQUOTE] = ACTIONS(1937), + [anon_sym_SQUOTE] = ACTIONS(1937), + [anon_sym_L_DQUOTE] = ACTIONS(1937), + [anon_sym_u_DQUOTE] = ACTIONS(1937), + [anon_sym_U_DQUOTE] = ACTIONS(1937), + [anon_sym_u8_DQUOTE] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1937), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [anon_sym_NULL] = ACTIONS(1935), + [anon_sym_nullptr] = ACTIONS(1935), [sym_comment] = ACTIONS(3), }, - [522] = { - [sym_type_qualifier] = STATE(1324), - [sym__type_specifier] = STATE(1353), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__expression] = STATE(1294), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_comma_expression] = STATE(2193), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_type_descriptor] = STATE(2189), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__type_definition_type_repeat1] = STATE(1324), - [aux_sym_sized_type_specifier_repeat1] = STATE(1363), - [sym_identifier] = ACTIONS(1913), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1915), - [anon_sym_unsigned] = ACTIONS(1915), - [anon_sym_long] = ACTIONS(1915), - [anon_sym_short] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), + [554] = { + [sym__expression] = STATE(902), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(983), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(983), + [sym_call_expression] = STATE(983), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(983), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(983), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(890), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1546), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1540), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1943), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -72580,6 +75988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72597,65 +76007,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [523] = { - [sym__expression] = STATE(868), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1919), - [anon_sym_COMMA] = ACTIONS(1522), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), + [555] = { + [sym__expression] = STATE(902), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_RPAREN] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1522), - [anon_sym___attribute__] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1522), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym___attribute__] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_COLON] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -72666,8 +76076,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72685,412 +76095,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [524] = { - [sym_identifier] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_LPAREN2] = ACTIONS(1923), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1923), - [anon_sym_AMP] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1923), - [anon_sym___extension__] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym___attribute__] = ACTIONS(1921), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), - [anon_sym___declspec] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1923), - [anon_sym_signed] = ACTIONS(1921), - [anon_sym_unsigned] = ACTIONS(1921), - [anon_sym_long] = ACTIONS(1921), - [anon_sym_short] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_EQ] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1921), - [anon_sym_auto] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_inline] = ACTIONS(1921), - [anon_sym___inline] = ACTIONS(1921), - [anon_sym___inline__] = ACTIONS(1921), - [anon_sym___forceinline] = ACTIONS(1921), - [anon_sym_thread_local] = ACTIONS(1921), - [anon_sym___thread] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_constexpr] = ACTIONS(1921), - [anon_sym_volatile] = ACTIONS(1921), - [anon_sym_restrict] = ACTIONS(1921), - [anon_sym___restrict__] = ACTIONS(1921), - [anon_sym__Atomic] = ACTIONS(1921), - [anon_sym__Noreturn] = ACTIONS(1921), - [anon_sym_noreturn] = ACTIONS(1921), - [sym_primitive_type] = ACTIONS(1921), - [anon_sym_enum] = ACTIONS(1921), - [anon_sym_COLON] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1921), - [anon_sym_union] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_switch] = ACTIONS(1921), - [anon_sym_case] = ACTIONS(1921), - [anon_sym_default] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_goto] = ACTIONS(1921), - [anon_sym___try] = ACTIONS(1921), - [anon_sym___leave] = ACTIONS(1921), - [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_PLUS_PLUS] = ACTIONS(1923), - [anon_sym_sizeof] = ACTIONS(1921), - [anon_sym___alignof__] = ACTIONS(1921), - [anon_sym___alignof] = ACTIONS(1921), - [anon_sym__alignof] = ACTIONS(1921), - [anon_sym_alignof] = ACTIONS(1921), - [anon_sym__Alignof] = ACTIONS(1921), - [anon_sym_offsetof] = ACTIONS(1921), - [anon_sym__Generic] = ACTIONS(1921), - [anon_sym_asm] = ACTIONS(1921), - [anon_sym___asm__] = ACTIONS(1921), - [sym_number_literal] = ACTIONS(1923), - [anon_sym_L_SQUOTE] = ACTIONS(1923), - [anon_sym_u_SQUOTE] = ACTIONS(1923), - [anon_sym_U_SQUOTE] = ACTIONS(1923), - [anon_sym_u8_SQUOTE] = ACTIONS(1923), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_L_DQUOTE] = ACTIONS(1923), - [anon_sym_u_DQUOTE] = ACTIONS(1923), - [anon_sym_U_DQUOTE] = ACTIONS(1923), - [anon_sym_u8_DQUOTE] = ACTIONS(1923), - [anon_sym_DQUOTE] = ACTIONS(1923), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [anon_sym_NULL] = ACTIONS(1921), - [anon_sym_nullptr] = ACTIONS(1921), - [sym_comment] = ACTIONS(3), - }, - [525] = { - [sym_identifier] = ACTIONS(1925), - [anon_sym_COMMA] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_LPAREN2] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1927), - [anon_sym_TILDE] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_PLUS] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1927), - [anon_sym_AMP] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym___extension__] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym___attribute__] = ACTIONS(1925), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1927), - [anon_sym___declspec] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_signed] = ACTIONS(1925), - [anon_sym_unsigned] = ACTIONS(1925), - [anon_sym_long] = ACTIONS(1925), - [anon_sym_short] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_EQ] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1925), - [anon_sym_auto] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_inline] = ACTIONS(1925), - [anon_sym___inline] = ACTIONS(1925), - [anon_sym___inline__] = ACTIONS(1925), - [anon_sym___forceinline] = ACTIONS(1925), - [anon_sym_thread_local] = ACTIONS(1925), - [anon_sym___thread] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_constexpr] = ACTIONS(1925), - [anon_sym_volatile] = ACTIONS(1925), - [anon_sym_restrict] = ACTIONS(1925), - [anon_sym___restrict__] = ACTIONS(1925), - [anon_sym__Atomic] = ACTIONS(1925), - [anon_sym__Noreturn] = ACTIONS(1925), - [anon_sym_noreturn] = ACTIONS(1925), - [sym_primitive_type] = ACTIONS(1925), - [anon_sym_enum] = ACTIONS(1925), - [anon_sym_COLON] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1925), - [anon_sym_union] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_switch] = ACTIONS(1925), - [anon_sym_case] = ACTIONS(1925), - [anon_sym_default] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_goto] = ACTIONS(1925), - [anon_sym___try] = ACTIONS(1925), - [anon_sym___leave] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_PLUS_PLUS] = ACTIONS(1927), - [anon_sym_sizeof] = ACTIONS(1925), - [anon_sym___alignof__] = ACTIONS(1925), - [anon_sym___alignof] = ACTIONS(1925), - [anon_sym__alignof] = ACTIONS(1925), - [anon_sym_alignof] = ACTIONS(1925), - [anon_sym__Alignof] = ACTIONS(1925), - [anon_sym_offsetof] = ACTIONS(1925), - [anon_sym__Generic] = ACTIONS(1925), - [anon_sym_asm] = ACTIONS(1925), - [anon_sym___asm__] = ACTIONS(1925), - [sym_number_literal] = ACTIONS(1927), - [anon_sym_L_SQUOTE] = ACTIONS(1927), - [anon_sym_u_SQUOTE] = ACTIONS(1927), - [anon_sym_U_SQUOTE] = ACTIONS(1927), - [anon_sym_u8_SQUOTE] = ACTIONS(1927), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_L_DQUOTE] = ACTIONS(1927), - [anon_sym_u_DQUOTE] = ACTIONS(1927), - [anon_sym_U_DQUOTE] = ACTIONS(1927), - [anon_sym_u8_DQUOTE] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [anon_sym_NULL] = ACTIONS(1925), - [anon_sym_nullptr] = ACTIONS(1925), - [sym_comment] = ACTIONS(3), - }, - [526] = { - [sym__expression] = STATE(868), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(916), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(916), - [sym_call_expression] = STATE(916), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(916), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(916), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(867), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_TILDE] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1933), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [556] = { + [sym_identifier] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_LPAREN2] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1949), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1949), + [anon_sym_SEMI] = ACTIONS(1949), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym___attribute__] = ACTIONS(1947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1949), + [anon_sym___declspec] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_signed] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1947), + [anon_sym_long] = ACTIONS(1947), + [anon_sym_short] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_EQ] = ACTIONS(1949), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_auto] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym___inline] = ACTIONS(1947), + [anon_sym___inline__] = ACTIONS(1947), + [anon_sym___forceinline] = ACTIONS(1947), + [anon_sym_thread_local] = ACTIONS(1947), + [anon_sym___thread] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_constexpr] = ACTIONS(1947), + [anon_sym_volatile] = ACTIONS(1947), + [anon_sym_restrict] = ACTIONS(1947), + [anon_sym___restrict__] = ACTIONS(1947), + [anon_sym__Atomic] = ACTIONS(1947), + [anon_sym__Noreturn] = ACTIONS(1947), + [anon_sym_noreturn] = ACTIONS(1947), + [sym_primitive_type] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1949), + [anon_sym_struct] = ACTIONS(1947), + [anon_sym_union] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_goto] = ACTIONS(1947), + [anon_sym___try] = ACTIONS(1947), + [anon_sym___leave] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_sizeof] = ACTIONS(1947), + [anon_sym___alignof__] = ACTIONS(1947), + [anon_sym___alignof] = ACTIONS(1947), + [anon_sym__alignof] = ACTIONS(1947), + [anon_sym_alignof] = ACTIONS(1947), + [anon_sym__Alignof] = ACTIONS(1947), + [anon_sym_offsetof] = ACTIONS(1947), + [anon_sym__Generic] = ACTIONS(1947), + [anon_sym_asm] = ACTIONS(1947), + [anon_sym___asm__] = ACTIONS(1947), + [sym_number_literal] = ACTIONS(1949), + [anon_sym_L_SQUOTE] = ACTIONS(1949), + [anon_sym_u_SQUOTE] = ACTIONS(1949), + [anon_sym_U_SQUOTE] = ACTIONS(1949), + [anon_sym_u8_SQUOTE] = ACTIONS(1949), + [anon_sym_SQUOTE] = ACTIONS(1949), + [anon_sym_L_DQUOTE] = ACTIONS(1949), + [anon_sym_u_DQUOTE] = ACTIONS(1949), + [anon_sym_U_DQUOTE] = ACTIONS(1949), + [anon_sym_u8_DQUOTE] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1949), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [anon_sym_NULL] = ACTIONS(1947), + [anon_sym_nullptr] = ACTIONS(1947), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym__expression] = STATE(949), - [sym__expression_not_binary] = STATE(990), - [sym__string] = STATE(990), - [sym_conditional_expression] = STATE(990), - [sym_assignment_expression] = STATE(990), - [sym_pointer_expression] = STATE(995), - [sym_unary_expression] = STATE(990), - [sym_binary_expression] = STATE(990), - [sym_update_expression] = STATE(990), - [sym_cast_expression] = STATE(990), - [sym_sizeof_expression] = STATE(990), - [sym_alignof_expression] = STATE(990), - [sym_offsetof_expression] = STATE(990), - [sym_generic_expression] = STATE(990), - [sym_subscript_expression] = STATE(995), - [sym_call_expression] = STATE(995), - [sym_gnu_asm_expression] = STATE(990), - [sym_field_expression] = STATE(995), - [sym_compound_literal_expression] = STATE(990), - [sym_parenthesized_expression] = STATE(995), - [sym_initializer_list] = STATE(984), - [sym_char_literal] = STATE(990), - [sym_concatenated_string] = STATE(990), - [sym_string_literal] = STATE(877), - [sym_null] = STATE(990), - [sym_identifier] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1522), - [aux_sym_preproc_if_token2] = ACTIONS(1522), - [aux_sym_preproc_else_token1] = ACTIONS(1522), - [aux_sym_preproc_elif_token1] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1937), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1939), - [anon_sym___alignof__] = ACTIONS(1714), - [anon_sym___alignof] = ACTIONS(1714), - [anon_sym__alignof] = ACTIONS(1714), - [anon_sym_alignof] = ACTIONS(1714), - [anon_sym__Alignof] = ACTIONS(1714), - [anon_sym_offsetof] = ACTIONS(1716), - [anon_sym__Generic] = ACTIONS(1718), - [anon_sym_asm] = ACTIONS(1720), - [anon_sym___asm__] = ACTIONS(1720), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), - [sym_number_literal] = ACTIONS(1722), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1726), - [anon_sym_u_DQUOTE] = ACTIONS(1726), - [anon_sym_U_DQUOTE] = ACTIONS(1726), - [anon_sym_u8_DQUOTE] = ACTIONS(1726), - [anon_sym_DQUOTE] = ACTIONS(1726), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [anon_sym_NULL] = ACTIONS(1730), - [anon_sym_nullptr] = ACTIONS(1730), + [557] = { + [sym__expression] = STATE(996), + [sym__expression_not_binary] = STATE(1073), + [sym__string] = STATE(1073), + [sym_conditional_expression] = STATE(1073), + [sym_assignment_expression] = STATE(1073), + [sym_pointer_expression] = STATE(1088), + [sym_unary_expression] = STATE(1073), + [sym_binary_expression] = STATE(1073), + [sym_update_expression] = STATE(1073), + [sym_cast_expression] = STATE(1073), + [sym_sizeof_expression] = STATE(1073), + [sym_alignof_expression] = STATE(1073), + [sym_offsetof_expression] = STATE(1073), + [sym_generic_expression] = STATE(1073), + [sym_subscript_expression] = STATE(1088), + [sym_call_expression] = STATE(1088), + [sym_gnu_asm_expression] = STATE(1073), + [sym_field_expression] = STATE(1088), + [sym_compound_literal_expression] = STATE(1073), + [sym_parenthesized_expression] = STATE(1088), + [sym_initializer_list] = STATE(1053), + [sym_char_literal] = STATE(1073), + [sym_concatenated_string] = STATE(1073), + [sym_string_literal] = STATE(910), + [sym_null] = STATE(1073), + [sym_identifier] = ACTIONS(1546), + [anon_sym_COMMA] = ACTIONS(1540), + [aux_sym_preproc_if_token2] = ACTIONS(1540), + [aux_sym_preproc_else_token1] = ACTIONS(1540), + [aux_sym_preproc_elif_token1] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1953), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1824), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym___alignof__] = ACTIONS(1828), + [anon_sym___alignof] = ACTIONS(1828), + [anon_sym__alignof] = ACTIONS(1828), + [anon_sym_alignof] = ACTIONS(1828), + [anon_sym__Alignof] = ACTIONS(1828), + [anon_sym_offsetof] = ACTIONS(1830), + [anon_sym__Generic] = ACTIONS(1832), + [anon_sym_asm] = ACTIONS(1834), + [anon_sym___asm__] = ACTIONS(1834), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), + [sym_number_literal] = ACTIONS(1836), + [anon_sym_L_SQUOTE] = ACTIONS(1838), + [anon_sym_u_SQUOTE] = ACTIONS(1838), + [anon_sym_U_SQUOTE] = ACTIONS(1838), + [anon_sym_u8_SQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_L_DQUOTE] = ACTIONS(1840), + [anon_sym_u_DQUOTE] = ACTIONS(1840), + [anon_sym_U_DQUOTE] = ACTIONS(1840), + [anon_sym_u8_DQUOTE] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [anon_sym_NULL] = ACTIONS(1844), + [anon_sym_nullptr] = ACTIONS(1844), [sym_comment] = ACTIONS(3), }, - [528] = { - [sym__expression] = STATE(1013), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_initializer_list] = STATE(827), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [sym_identifier] = ACTIONS(1941), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), - [anon_sym_LPAREN2] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1943), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_PIPE_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_EQ_EQ] = ACTIONS(1522), - [anon_sym_BANG_EQ] = ACTIONS(1522), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1522), - [anon_sym_LT_EQ] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1522), - [anon_sym_RBRACK] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1522), - [anon_sym_DASH_DASH] = ACTIONS(1522), - [anon_sym_PLUS_PLUS] = ACTIONS(1522), - [anon_sym_sizeof] = ACTIONS(1947), + [558] = { + [sym__expression] = STATE(1100), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_initializer_list] = STATE(861), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), + [anon_sym_LPAREN2] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1546), + [anon_sym_PLUS] = ACTIONS(1546), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1546), + [anon_sym_PERCENT] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_CARET] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1546), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1546), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1546), + [anon_sym_LT_LT] = ACTIONS(1540), + [anon_sym_GT_GT] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_RBRACK] = ACTIONS(1540), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_DASH_DASH] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1540), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -73100,8 +76334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1546), + [anon_sym_DASH_GT] = ACTIONS(1540), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -73119,8 +76353,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [529] = { - [sym_else_clause] = STATE(314), + [559] = { + [sym_else_clause] = STATE(325), [sym_identifier] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -73163,7 +76397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1949), + [anon_sym_else] = ACTIONS(1965), [anon_sym_switch] = ACTIONS(1292), [anon_sym_while] = ACTIONS(1292), [anon_sym_do] = ACTIONS(1292), @@ -73203,159 +76437,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [530] = { - [sym_identifier] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1954), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym___extension__] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1960), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [anon_sym___inline] = ACTIONS(1958), - [anon_sym___inline__] = ACTIONS(1958), - [anon_sym___forceinline] = ACTIONS(1958), - [anon_sym_thread_local] = ACTIONS(1958), - [anon_sym___thread] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_constexpr] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym___restrict__] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym__Noreturn] = ACTIONS(1958), - [anon_sym_noreturn] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_switch] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_while] = ACTIONS(1956), - [anon_sym_do] = ACTIONS(1956), - [anon_sym_for] = ACTIONS(1956), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_goto] = ACTIONS(1956), - [anon_sym___try] = ACTIONS(1956), - [anon_sym___leave] = ACTIONS(1956), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_PLUS_PLUS] = ACTIONS(1954), - [anon_sym_sizeof] = ACTIONS(1956), - [anon_sym___alignof__] = ACTIONS(1956), - [anon_sym___alignof] = ACTIONS(1956), - [anon_sym__alignof] = ACTIONS(1956), - [anon_sym_alignof] = ACTIONS(1956), - [anon_sym__Alignof] = ACTIONS(1956), - [anon_sym_offsetof] = ACTIONS(1956), - [anon_sym__Generic] = ACTIONS(1956), - [anon_sym_asm] = ACTIONS(1956), - [anon_sym___asm__] = ACTIONS(1956), - [sym_number_literal] = ACTIONS(1954), - [anon_sym_L_SQUOTE] = ACTIONS(1954), - [anon_sym_u_SQUOTE] = ACTIONS(1954), - [anon_sym_U_SQUOTE] = ACTIONS(1954), - [anon_sym_u8_SQUOTE] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1954), - [anon_sym_L_DQUOTE] = ACTIONS(1954), - [anon_sym_u_DQUOTE] = ACTIONS(1954), - [anon_sym_U_DQUOTE] = ACTIONS(1954), - [anon_sym_u8_DQUOTE] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1954), - [sym_true] = ACTIONS(1956), - [sym_false] = ACTIONS(1956), - [anon_sym_NULL] = ACTIONS(1956), - [anon_sym_nullptr] = ACTIONS(1956), - [sym_comment] = ACTIONS(3), - }, - [531] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [560] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(1986), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73363,76 +76520,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [532] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [561] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73440,76 +76603,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [533] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [562] = { + [sym_identifier] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym___extension__] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym___attribute__] = ACTIONS(1999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2001), + [anon_sym___declspec] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_signed] = ACTIONS(1999), + [anon_sym_unsigned] = ACTIONS(1999), + [anon_sym_long] = ACTIONS(1999), + [anon_sym_short] = ACTIONS(1999), + [anon_sym_static] = ACTIONS(1999), + [anon_sym_auto] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_inline] = ACTIONS(1999), + [anon_sym___inline] = ACTIONS(1999), + [anon_sym___inline__] = ACTIONS(1999), + [anon_sym___forceinline] = ACTIONS(1999), + [anon_sym_thread_local] = ACTIONS(1999), + [anon_sym___thread] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_constexpr] = ACTIONS(1999), + [anon_sym_volatile] = ACTIONS(1999), + [anon_sym_restrict] = ACTIONS(1999), + [anon_sym___restrict__] = ACTIONS(1999), + [anon_sym__Atomic] = ACTIONS(1999), + [anon_sym__Noreturn] = ACTIONS(1999), + [anon_sym_noreturn] = ACTIONS(1999), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_enum] = ACTIONS(1999), + [anon_sym_struct] = ACTIONS(1999), + [anon_sym_union] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_switch] = ACTIONS(1997), + [anon_sym_case] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_goto] = ACTIONS(1997), + [anon_sym___try] = ACTIONS(1997), + [anon_sym___leave] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1995), + [anon_sym_sizeof] = ACTIONS(1997), + [anon_sym___alignof__] = ACTIONS(1997), + [anon_sym___alignof] = ACTIONS(1997), + [anon_sym__alignof] = ACTIONS(1997), + [anon_sym_alignof] = ACTIONS(1997), + [anon_sym__Alignof] = ACTIONS(1997), + [anon_sym_offsetof] = ACTIONS(1997), + [anon_sym__Generic] = ACTIONS(1997), + [anon_sym_asm] = ACTIONS(1997), + [anon_sym___asm__] = ACTIONS(1997), + [sym_number_literal] = ACTIONS(1995), + [anon_sym_L_SQUOTE] = ACTIONS(1995), + [anon_sym_u_SQUOTE] = ACTIONS(1995), + [anon_sym_U_SQUOTE] = ACTIONS(1995), + [anon_sym_u8_SQUOTE] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1995), + [anon_sym_L_DQUOTE] = ACTIONS(1995), + [anon_sym_u_DQUOTE] = ACTIONS(1995), + [anon_sym_U_DQUOTE] = ACTIONS(1995), + [anon_sym_u8_DQUOTE] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym_true] = ACTIONS(1997), + [sym_false] = ACTIONS(1997), + [anon_sym_NULL] = ACTIONS(1997), + [anon_sym_nullptr] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + }, + [563] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2004), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73517,76 +76769,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1991), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [564] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2004), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73594,76 +76852,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1989), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [565] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73671,76 +76935,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [566] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73748,76 +77018,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1995), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [567] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(1990), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73825,76 +77101,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1993), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [568] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2013), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73902,76 +77184,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1991), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [569] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2009), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -73979,76 +77267,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [570] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2013), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -74056,75 +77350,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_COLON] = ACTIONS(1997), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [571] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(1969), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -74132,75 +77432,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_string_literal] = STATE(799), - [aux_sym_sized_type_specifier_repeat1] = STATE(1106), - [sym_identifier] = ACTIONS(1963), - [anon_sym_COMMA] = ACTIONS(1965), - [anon_sym_LPAREN2] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1971), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1965), - [anon_sym_AMP_AMP] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_AMP] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1965), - [anon_sym_BANG_EQ] = ACTIONS(1965), - [anon_sym_GT] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1965), - [anon_sym_LT_EQ] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1971), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym___extension__] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym___attribute__] = ACTIONS(1963), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), - [anon_sym___declspec] = ACTIONS(1963), - [anon_sym___based] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1981), - [anon_sym_unsigned] = ACTIONS(1981), - [anon_sym_long] = ACTIONS(1981), - [anon_sym_short] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_auto] = ACTIONS(1963), - [anon_sym_register] = ACTIONS(1963), - [anon_sym_inline] = ACTIONS(1963), - [anon_sym___inline] = ACTIONS(1963), - [anon_sym___inline__] = ACTIONS(1963), - [anon_sym___forceinline] = ACTIONS(1963), - [anon_sym_thread_local] = ACTIONS(1963), - [anon_sym___thread] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_constexpr] = ACTIONS(1963), - [anon_sym_volatile] = ACTIONS(1963), - [anon_sym_restrict] = ACTIONS(1963), - [anon_sym___restrict__] = ACTIONS(1963), - [anon_sym__Atomic] = ACTIONS(1963), - [anon_sym__Noreturn] = ACTIONS(1963), - [anon_sym_noreturn] = ACTIONS(1963), - [anon_sym_QMARK] = ACTIONS(1965), - [anon_sym_STAR_EQ] = ACTIONS(1987), - [anon_sym_SLASH_EQ] = ACTIONS(1987), - [anon_sym_PERCENT_EQ] = ACTIONS(1987), - [anon_sym_PLUS_EQ] = ACTIONS(1987), - [anon_sym_DASH_EQ] = ACTIONS(1987), - [anon_sym_LT_LT_EQ] = ACTIONS(1987), - [anon_sym_GT_GT_EQ] = ACTIONS(1987), - [anon_sym_AMP_EQ] = ACTIONS(1987), - [anon_sym_CARET_EQ] = ACTIONS(1987), - [anon_sym_PIPE_EQ] = ACTIONS(1987), - [anon_sym_DASH_DASH] = ACTIONS(1965), - [anon_sym_PLUS_PLUS] = ACTIONS(1965), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DASH_GT] = ACTIONS(1965), + [572] = { + [sym_string_literal] = STATE(824), + [aux_sym_sized_type_specifier_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(1967), + [anon_sym_LPAREN2] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1975), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1969), + [anon_sym_AMP_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1975), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1969), + [anon_sym_BANG_EQ] = ACTIONS(1969), + [anon_sym_GT] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1969), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1975), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym___extension__] = ACTIONS(1967), + [anon_sym_extern] = ACTIONS(1967), + [anon_sym___attribute__] = ACTIONS(1967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1967), + [anon_sym___based] = ACTIONS(1967), + [anon_sym___cdecl] = ACTIONS(1967), + [anon_sym___clrcall] = ACTIONS(1967), + [anon_sym___stdcall] = ACTIONS(1967), + [anon_sym___fastcall] = ACTIONS(1967), + [anon_sym___thiscall] = ACTIONS(1967), + [anon_sym___vectorcall] = ACTIONS(1967), + [anon_sym_signed] = ACTIONS(1982), + [anon_sym_unsigned] = ACTIONS(1982), + [anon_sym_long] = ACTIONS(1982), + [anon_sym_short] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_auto] = ACTIONS(1967), + [anon_sym_register] = ACTIONS(1967), + [anon_sym_inline] = ACTIONS(1967), + [anon_sym___inline] = ACTIONS(1967), + [anon_sym___inline__] = ACTIONS(1967), + [anon_sym___forceinline] = ACTIONS(1967), + [anon_sym_thread_local] = ACTIONS(1967), + [anon_sym___thread] = ACTIONS(1967), + [anon_sym_const] = ACTIONS(1967), + [anon_sym_constexpr] = ACTIONS(1967), + [anon_sym_volatile] = ACTIONS(1967), + [anon_sym_restrict] = ACTIONS(1967), + [anon_sym___restrict__] = ACTIONS(1967), + [anon_sym__Atomic] = ACTIONS(1967), + [anon_sym__Noreturn] = ACTIONS(1967), + [anon_sym_noreturn] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(2011), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_STAR_EQ] = ACTIONS(1988), + [anon_sym_SLASH_EQ] = ACTIONS(1988), + [anon_sym_PERCENT_EQ] = ACTIONS(1988), + [anon_sym_PLUS_EQ] = ACTIONS(1988), + [anon_sym_DASH_EQ] = ACTIONS(1988), + [anon_sym_LT_LT_EQ] = ACTIONS(1988), + [anon_sym_GT_GT_EQ] = ACTIONS(1988), + [anon_sym_AMP_EQ] = ACTIONS(1988), + [anon_sym_CARET_EQ] = ACTIONS(1988), + [anon_sym_PIPE_EQ] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_DASH_GT] = ACTIONS(1969), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -74208,54 +77514,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_type_qualifier] = STATE(544), - [sym__expression] = STATE(1339), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(544), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [573] = { + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1443), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_based_modifier] = STATE(2409), + [sym_ms_call_modifier] = STATE(1552), + [sym__declarator] = STATE(1714), + [sym__abstract_declarator] = STATE(1852), + [sym_parenthesized_declarator] = STATE(1647), + [sym_abstract_parenthesized_declarator] = STATE(1786), + [sym_attributed_declarator] = STATE(1647), + [sym_pointer_declarator] = STATE(1647), + [sym_abstract_pointer_declarator] = STATE(1786), + [sym_function_declarator] = STATE(1647), + [sym_abstract_function_declarator] = STATE(1786), + [sym_array_declarator] = STATE(1647), + [sym_abstract_array_declarator] = STATE(1786), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_variadic_parameter] = STATE(2016), + [sym_parameter_list] = STATE(1788), + [sym_parameter_declaration] = STATE(2016), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(2025), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [sym_comment] = ACTIONS(3), + }, + [574] = { + [sym_type_qualifier] = STATE(908), + [sym__expression] = STATE(1384), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74282,54 +77665,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_type_qualifier] = STATE(878), - [sym__expression] = STATE(1319), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [575] = { + [sym_type_qualifier] = STATE(579), + [sym__expression] = STATE(1356), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(579), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74356,54 +77739,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_type_qualifier] = STATE(878), - [sym__expression] = STATE(1311), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [576] = { + [sym_type_qualifier] = STATE(580), + [sym__expression] = STATE(1360), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(580), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2045), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74430,54 +77813,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_type_qualifier] = STATE(547), - [sym__expression] = STATE(1305), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(547), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [577] = { + [sym_type_qualifier] = STATE(574), + [sym__expression] = STATE(1359), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(574), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74504,54 +77887,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_type_qualifier] = STATE(878), - [sym__expression] = STATE(1326), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [578] = { + [sym_type_qualifier] = STATE(908), + [sym__expression] = STATE(1381), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2053), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74578,54 +77961,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_type_qualifier] = STATE(878), - [sym__expression] = STATE(1317), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [579] = { + [sym_type_qualifier] = STATE(908), + [sym__expression] = STATE(1363), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74652,54 +78035,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_type_qualifier] = STATE(545), - [sym__expression] = STATE(1306), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(545), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [580] = { + [sym_type_qualifier] = STATE(908), + [sym__expression] = STATE(1378), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74726,54 +78109,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_type_qualifier] = STATE(878), - [sym__expression] = STATE(1321), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [581] = { + [sym_type_qualifier] = STATE(908), + [sym__expression] = STATE(1354), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74800,54 +78183,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_type_qualifier] = STATE(550), - [sym__expression] = STATE(1329), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(550), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [582] = { + [sym_type_qualifier] = STATE(578), + [sym__expression] = STATE(1376), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(578), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74874,54 +78257,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_type_qualifier] = STATE(548), - [sym__expression] = STATE(1325), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(1046), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(1046), - [sym_call_expression] = STATE(1046), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(1046), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(1046), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym__type_definition_type_repeat1] = STATE(548), - [sym_identifier] = ACTIONS(1941), - [anon_sym_LPAREN2] = ACTIONS(1999), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_TILDE] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym___extension__] = ACTIONS(2005), - [anon_sym_RBRACK] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_constexpr] = ACTIONS(2005), - [anon_sym_volatile] = ACTIONS(2005), - [anon_sym_restrict] = ACTIONS(2005), - [anon_sym___restrict__] = ACTIONS(2005), - [anon_sym__Atomic] = ACTIONS(2005), - [anon_sym__Noreturn] = ACTIONS(2005), - [anon_sym_noreturn] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_sizeof] = ACTIONS(1947), + [583] = { + [sym_type_qualifier] = STATE(581), + [sym__expression] = STATE(1366), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1138), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1138), + [sym_call_expression] = STATE(1138), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1138), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1138), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym__type_definition_type_repeat1] = STATE(581), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(2029), + [anon_sym_BANG] = ACTIONS(1961), + [anon_sym_TILDE] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym___extension__] = ACTIONS(2035), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2035), + [anon_sym_constexpr] = ACTIONS(2035), + [anon_sym_volatile] = ACTIONS(2035), + [anon_sym_restrict] = ACTIONS(2035), + [anon_sym___restrict__] = ACTIONS(2035), + [anon_sym__Atomic] = ACTIONS(2035), + [anon_sym__Noreturn] = ACTIONS(2035), + [anon_sym_noreturn] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(2039), + [anon_sym_sizeof] = ACTIONS(1963), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -74948,39 +78331,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym__expression] = STATE(1240), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1787), - [sym_initializer_pair] = STATE(1787), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), - [anon_sym_COMMA] = ACTIONS(2049), + [584] = { + [sym__expression] = STATE(1277), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2001), + [sym_initializer_pair] = STATE(2001), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2079), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74988,9 +78371,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75003,7 +78386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75021,39 +78404,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [554] = { - [sym__expression] = STATE(1233), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1810), - [sym_initializer_pair] = STATE(1810), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), - [anon_sym_COMMA] = ACTIONS(2057), + [585] = { + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(1897), + [sym_initializer_pair] = STATE(1897), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), + [anon_sym_COMMA] = ACTIONS(2087), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75061,9 +78444,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75076,7 +78459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75094,38 +78477,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [555] = { - [sym__expression] = STATE(1291), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1959), - [sym_initializer_pair] = STATE(1959), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), + [586] = { + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2086), + [sym_initializer_pair] = STATE(2086), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75133,9 +78516,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75148,7 +78531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75166,38 +78549,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [556] = { - [sym__expression] = STATE(1291), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1959), - [sym_initializer_pair] = STATE(1959), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), + [587] = { + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2086), + [sym_initializer_pair] = STATE(2086), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75205,9 +78588,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75220,7 +78603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75238,38 +78621,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [557] = { - [sym__expression] = STATE(1291), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1959), - [sym_initializer_pair] = STATE(1959), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), + [588] = { + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2086), + [sym_initializer_pair] = STATE(2086), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75277,9 +78660,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75292,7 +78675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75310,38 +78693,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [558] = { - [sym__expression] = STATE(1291), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1959), - [sym_initializer_pair] = STATE(1959), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), + [589] = { + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2086), + [sym_initializer_pair] = STATE(2086), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75349,9 +78732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75364,7 +78747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75382,38 +78765,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [559] = { - [sym__expression] = STATE(1291), - [sym__expression_not_binary] = STATE(843), - [sym__string] = STATE(843), - [sym_conditional_expression] = STATE(843), - [sym_assignment_expression] = STATE(843), - [sym_pointer_expression] = STATE(947), - [sym_unary_expression] = STATE(843), - [sym_binary_expression] = STATE(843), - [sym_update_expression] = STATE(843), - [sym_cast_expression] = STATE(843), - [sym_sizeof_expression] = STATE(843), - [sym_alignof_expression] = STATE(843), - [sym_offsetof_expression] = STATE(843), - [sym_generic_expression] = STATE(843), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_gnu_asm_expression] = STATE(843), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(843), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(1959), - [sym_initializer_pair] = STATE(1959), - [sym_subscript_designator] = STATE(1641), - [sym_subscript_range_designator] = STATE(1641), - [sym_field_designator] = STATE(1641), - [sym_char_literal] = STATE(843), - [sym_concatenated_string] = STATE(843), - [sym_string_literal] = STATE(816), - [sym_null] = STATE(843), - [aux_sym_initializer_pair_repeat1] = STATE(1641), - [sym_identifier] = ACTIONS(2047), + [590] = { + [sym__expression] = STATE(1316), + [sym__expression_not_binary] = STATE(884), + [sym__string] = STATE(884), + [sym_conditional_expression] = STATE(884), + [sym_assignment_expression] = STATE(884), + [sym_pointer_expression] = STATE(1003), + [sym_unary_expression] = STATE(884), + [sym_binary_expression] = STATE(884), + [sym_update_expression] = STATE(884), + [sym_cast_expression] = STATE(884), + [sym_sizeof_expression] = STATE(884), + [sym_alignof_expression] = STATE(884), + [sym_offsetof_expression] = STATE(884), + [sym_generic_expression] = STATE(884), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_gnu_asm_expression] = STATE(884), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(884), + [sym_parenthesized_expression] = STATE(1003), + [sym_initializer_list] = STATE(2086), + [sym_initializer_pair] = STATE(2086), + [sym_subscript_designator] = STATE(1734), + [sym_subscript_range_designator] = STATE(1734), + [sym_field_designator] = STATE(1734), + [sym_char_literal] = STATE(884), + [sym_concatenated_string] = STATE(884), + [sym_string_literal] = STATE(845), + [sym_null] = STATE(884), + [aux_sym_initializer_pair_repeat1] = STATE(1734), + [sym_identifier] = ACTIONS(2077), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -75421,8 +78804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(2083), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -75435,7 +78818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2085), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -75453,44 +78836,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [560] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym_preproc_else_in_field_declaration_list] = STATE(2150), - [sym_preproc_elif_in_field_declaration_list] = STATE(2150), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2150), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [591] = { + [sym_preproc_def] = STATE(597), + [sym_preproc_function_def] = STATE(597), + [sym_preproc_call] = STATE(597), + [sym_preproc_if_in_field_declaration_list] = STATE(597), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(597), + [sym_preproc_else_in_field_declaration_list] = STATE(2256), + [sym_preproc_elif_in_field_declaration_list] = STATE(2256), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2256), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(597), + [sym_field_declaration] = STATE(597), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(597), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75523,44 +78906,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [561] = { - [sym_preproc_def] = STATE(568), - [sym_preproc_function_def] = STATE(568), - [sym_preproc_call] = STATE(568), - [sym_preproc_if_in_field_declaration_list] = STATE(568), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(568), - [sym_preproc_else_in_field_declaration_list] = STATE(2221), - [sym_preproc_elif_in_field_declaration_list] = STATE(2221), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2221), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(568), - [sym_field_declaration] = STATE(568), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(568), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2087), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [592] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(2341), + [sym_preproc_elif_in_field_declaration_list] = STATE(2341), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2341), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75593,44 +78976,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [562] = { - [sym_preproc_def] = STATE(565), - [sym_preproc_function_def] = STATE(565), - [sym_preproc_call] = STATE(565), - [sym_preproc_if_in_field_declaration_list] = STATE(565), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(565), - [sym_preproc_else_in_field_declaration_list] = STATE(2102), - [sym_preproc_elif_in_field_declaration_list] = STATE(2102), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2102), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(565), - [sym_field_declaration] = STATE(565), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(565), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2089), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [593] = { + [sym_preproc_def] = STATE(594), + [sym_preproc_function_def] = STATE(594), + [sym_preproc_call] = STATE(594), + [sym_preproc_if_in_field_declaration_list] = STATE(594), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(594), + [sym_preproc_else_in_field_declaration_list] = STATE(2184), + [sym_preproc_elif_in_field_declaration_list] = STATE(2184), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2184), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(594), + [sym_field_declaration] = STATE(594), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(594), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75663,44 +79046,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [563] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym_preproc_else_in_field_declaration_list] = STATE(2053), - [sym_preproc_elif_in_field_declaration_list] = STATE(2053), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2053), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2091), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [594] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(2187), + [sym_preproc_elif_in_field_declaration_list] = STATE(2187), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2187), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75733,53 +79116,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [564] = { - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1389), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_ms_based_modifier] = STATE(2088), - [sym__declarator] = STATE(1636), - [sym__abstract_declarator] = STATE(1783), - [sym_parenthesized_declarator] = STATE(1575), - [sym_abstract_parenthesized_declarator] = STATE(1703), - [sym_attributed_declarator] = STATE(1575), - [sym_pointer_declarator] = STATE(1575), - [sym_abstract_pointer_declarator] = STATE(1703), - [sym_function_declarator] = STATE(1575), - [sym_abstract_function_declarator] = STATE(1703), - [sym_array_declarator] = STATE(1575), - [sym_abstract_array_declarator] = STATE(1703), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym_variadic_parameter] = STATE(1848), - [sym_parameter_list] = STATE(1705), - [sym_parameter_declaration] = STATE(1848), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), - [anon_sym_RPAREN] = ACTIONS(2097), - [anon_sym_LPAREN2] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2101), + [595] = { + [sym_preproc_def] = STATE(596), + [sym_preproc_function_def] = STATE(596), + [sym_preproc_call] = STATE(596), + [sym_preproc_if_in_field_declaration_list] = STATE(596), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(596), + [sym_preproc_else_in_field_declaration_list] = STATE(2218), + [sym_preproc_elif_in_field_declaration_list] = STATE(2218), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2218), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(596), + [sym_field_declaration] = STATE(596), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(596), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2103), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2105), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -75803,44 +79186,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [565] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym_preproc_else_in_field_declaration_list] = STATE(2222), - [sym_preproc_elif_in_field_declaration_list] = STATE(2222), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2222), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [596] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(2351), + [sym_preproc_elif_in_field_declaration_list] = STATE(2351), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2351), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75873,44 +79256,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [566] = { - [sym_preproc_def] = STATE(563), - [sym_preproc_function_def] = STATE(563), - [sym_preproc_call] = STATE(563), - [sym_preproc_if_in_field_declaration_list] = STATE(563), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(563), - [sym_preproc_else_in_field_declaration_list] = STATE(2081), - [sym_preproc_elif_in_field_declaration_list] = STATE(2081), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2081), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(563), - [sym_field_declaration] = STATE(563), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(563), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [597] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym_preproc_else_in_field_declaration_list] = STATE(2248), + [sym_preproc_elif_in_field_declaration_list] = STATE(2248), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2248), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2127), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -75943,44 +79326,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [567] = { - [sym_preproc_def] = STATE(560), - [sym_preproc_function_def] = STATE(560), - [sym_preproc_call] = STATE(560), - [sym_preproc_if_in_field_declaration_list] = STATE(560), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), - [sym_preproc_else_in_field_declaration_list] = STATE(2162), - [sym_preproc_elif_in_field_declaration_list] = STATE(2162), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2162), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(560), - [sym_field_declaration] = STATE(560), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2111), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [598] = { + [sym_preproc_def] = STATE(592), + [sym_preproc_function_def] = STATE(592), + [sym_preproc_call] = STATE(592), + [sym_preproc_if_in_field_declaration_list] = STATE(592), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(592), + [sym_preproc_else_in_field_declaration_list] = STATE(2356), + [sym_preproc_elif_in_field_declaration_list] = STATE(2356), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2356), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(592), + [sym_field_declaration] = STATE(592), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(592), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2101), + [aux_sym_preproc_if_token1] = ACTIONS(2103), + [aux_sym_preproc_if_token2] = ACTIONS(2129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2107), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2113), + [sym_preproc_directive] = ACTIONS(2115), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76013,53 +79396,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [568] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym_preproc_else_in_field_declaration_list] = STATE(2233), - [sym_preproc_elif_in_field_declaration_list] = STATE(2233), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2233), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2071), - [aux_sym_preproc_if_token1] = ACTIONS(2073), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), - [sym_preproc_directive] = ACTIONS(2085), + [599] = { + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1443), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_ms_call_modifier] = STATE(1656), + [sym__abstract_declarator] = STATE(1852), + [sym_abstract_parenthesized_declarator] = STATE(1786), + [sym_abstract_pointer_declarator] = STATE(1786), + [sym_abstract_function_declarator] = STATE(1786), + [sym_abstract_array_declarator] = STATE(1786), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym_variadic_parameter] = STATE(2016), + [sym_parameter_list] = STATE(1788), + [sym_parameter_declaration] = STATE(2016), + [sym_macro_type_specifier] = STATE(998), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2017), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2133), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(2027), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -76083,41 +79465,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [569] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2196), - [sym_preproc_elif_in_field_declaration_list] = STATE(2196), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [600] = { + [sym_preproc_def] = STATE(611), + [sym_preproc_function_def] = STATE(611), + [sym_preproc_call] = STATE(611), + [sym_preproc_if_in_field_declaration_list] = STATE(611), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(611), + [sym_preproc_else_in_field_declaration_list] = STATE(2201), + [sym_preproc_elif_in_field_declaration_list] = STATE(2201), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(611), + [sym_field_declaration] = STATE(611), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(611), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2139), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76150,41 +79532,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [570] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2148), - [sym_preproc_elif_in_field_declaration_list] = STATE(2148), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [601] = { + [sym_preproc_def] = STATE(601), + [sym_preproc_function_def] = STATE(601), + [sym_preproc_call] = STATE(601), + [sym_preproc_if_in_field_declaration_list] = STATE(601), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(601), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1577), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(601), + [sym_field_declaration] = STATE(601), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(601), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2145), + [aux_sym_preproc_def_token1] = ACTIONS(2148), + [aux_sym_preproc_if_token1] = ACTIONS(2151), + [aux_sym_preproc_if_token2] = ACTIONS(2154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2156), + [aux_sym_preproc_else_token1] = ACTIONS(2154), + [aux_sym_preproc_elif_token1] = ACTIONS(2154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2154), + [sym_preproc_directive] = ACTIONS(2159), + [anon_sym___extension__] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym___attribute__] = ACTIONS(2168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2171), + [anon_sym___declspec] = ACTIONS(2174), + [anon_sym_signed] = ACTIONS(2177), + [anon_sym_unsigned] = ACTIONS(2177), + [anon_sym_long] = ACTIONS(2177), + [anon_sym_short] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_auto] = ACTIONS(2165), + [anon_sym_register] = ACTIONS(2165), + [anon_sym_inline] = ACTIONS(2165), + [anon_sym___inline] = ACTIONS(2165), + [anon_sym___inline__] = ACTIONS(2165), + [anon_sym___forceinline] = ACTIONS(2165), + [anon_sym_thread_local] = ACTIONS(2165), + [anon_sym___thread] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_constexpr] = ACTIONS(2162), + [anon_sym_volatile] = ACTIONS(2162), + [anon_sym_restrict] = ACTIONS(2162), + [anon_sym___restrict__] = ACTIONS(2162), + [anon_sym__Atomic] = ACTIONS(2162), + [anon_sym__Noreturn] = ACTIONS(2162), + [anon_sym_noreturn] = ACTIONS(2162), + [sym_primitive_type] = ACTIONS(2180), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2189), + [sym_comment] = ACTIONS(3), + }, + [602] = { + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_field_declaration_list] = STATE(612), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(612), + [sym_preproc_else_in_field_declaration_list] = STATE(2251), + [sym_preproc_elif_in_field_declaration_list] = STATE(2251), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(612), + [sym_field_declaration] = STATE(612), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(612), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76217,108 +79666,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [571] = { - [sym_preproc_def] = STATE(571), - [sym_preproc_function_def] = STATE(571), - [sym_preproc_call] = STATE(571), - [sym_preproc_if_in_field_declaration_list] = STATE(571), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1507), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(571), - [sym_field_declaration] = STATE(571), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2127), - [aux_sym_preproc_def_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token1] = ACTIONS(2133), - [aux_sym_preproc_if_token2] = ACTIONS(2136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [aux_sym_preproc_else_token1] = ACTIONS(2136), - [aux_sym_preproc_elif_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), - [sym_preproc_directive] = ACTIONS(2141), - [anon_sym___extension__] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2153), - [anon_sym___declspec] = ACTIONS(2156), - [anon_sym_signed] = ACTIONS(2159), - [anon_sym_unsigned] = ACTIONS(2159), - [anon_sym_long] = ACTIONS(2159), - [anon_sym_short] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_auto] = ACTIONS(2147), - [anon_sym_register] = ACTIONS(2147), - [anon_sym_inline] = ACTIONS(2147), - [anon_sym___inline] = ACTIONS(2147), - [anon_sym___inline__] = ACTIONS(2147), - [anon_sym___forceinline] = ACTIONS(2147), - [anon_sym_thread_local] = ACTIONS(2147), - [anon_sym___thread] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2144), - [anon_sym_constexpr] = ACTIONS(2144), - [anon_sym_volatile] = ACTIONS(2144), - [anon_sym_restrict] = ACTIONS(2144), - [anon_sym___restrict__] = ACTIONS(2144), - [anon_sym__Atomic] = ACTIONS(2144), - [anon_sym__Noreturn] = ACTIONS(2144), - [anon_sym_noreturn] = ACTIONS(2144), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2168), - [anon_sym_union] = ACTIONS(2171), - [sym_comment] = ACTIONS(3), - }, - [572] = { - [sym_preproc_def] = STATE(574), - [sym_preproc_function_def] = STATE(574), - [sym_preproc_call] = STATE(574), - [sym_preproc_if_in_field_declaration_list] = STATE(574), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(574), - [sym_preproc_else_in_field_declaration_list] = STATE(2242), - [sym_preproc_elif_in_field_declaration_list] = STATE(2242), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(574), - [sym_field_declaration] = STATE(574), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(574), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [603] = { + [sym_preproc_def] = STATE(608), + [sym_preproc_function_def] = STATE(608), + [sym_preproc_call] = STATE(608), + [sym_preproc_if_in_field_declaration_list] = STATE(608), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(608), + [sym_preproc_else_in_field_declaration_list] = STATE(2261), + [sym_preproc_elif_in_field_declaration_list] = STATE(2261), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(608), + [sym_field_declaration] = STATE(608), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(608), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2194), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76351,41 +79733,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [573] = { - [sym_preproc_def] = STATE(570), - [sym_preproc_function_def] = STATE(570), - [sym_preproc_call] = STATE(570), - [sym_preproc_if_in_field_declaration_list] = STATE(570), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(570), - [sym_preproc_else_in_field_declaration_list] = STATE(2159), - [sym_preproc_elif_in_field_declaration_list] = STATE(2159), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(570), - [sym_field_declaration] = STATE(570), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(570), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [604] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2359), + [sym_preproc_elif_in_field_declaration_list] = STATE(2359), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76418,41 +79800,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [574] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2101), - [sym_preproc_elif_in_field_declaration_list] = STATE(2101), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [605] = { + [sym_preproc_def] = STATE(604), + [sym_preproc_function_def] = STATE(604), + [sym_preproc_call] = STATE(604), + [sym_preproc_if_in_field_declaration_list] = STATE(604), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(604), + [sym_preproc_else_in_field_declaration_list] = STATE(2396), + [sym_preproc_elif_in_field_declaration_list] = STATE(2396), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(604), + [sym_field_declaration] = STATE(604), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(604), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2198), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76485,41 +79867,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [575] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2040), - [sym_preproc_elif_in_field_declaration_list] = STATE(2040), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [606] = { + [sym_preproc_def] = STATE(610), + [sym_preproc_function_def] = STATE(610), + [sym_preproc_call] = STATE(610), + [sym_preproc_if_in_field_declaration_list] = STATE(610), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(610), + [sym_preproc_else_in_field_declaration_list] = STATE(2345), + [sym_preproc_elif_in_field_declaration_list] = STATE(2345), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(610), + [sym_field_declaration] = STATE(610), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(610), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76552,41 +79934,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [576] = { - [sym_preproc_def] = STATE(580), - [sym_preproc_function_def] = STATE(580), - [sym_preproc_call] = STATE(580), - [sym_preproc_if_in_field_declaration_list] = STATE(580), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(580), - [sym_preproc_else_in_field_declaration_list] = STATE(2100), - [sym_preproc_elif_in_field_declaration_list] = STATE(2100), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(580), - [sym_field_declaration] = STATE(580), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [607] = { + [sym_preproc_def] = STATE(609), + [sym_preproc_function_def] = STATE(609), + [sym_preproc_call] = STATE(609), + [sym_preproc_if_in_field_declaration_list] = STATE(609), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(609), + [sym_preproc_else_in_field_declaration_list] = STATE(2186), + [sym_preproc_elif_in_field_declaration_list] = STATE(2186), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(609), + [sym_field_declaration] = STATE(609), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(609), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76619,41 +80001,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [577] = { - [sym_preproc_def] = STATE(575), - [sym_preproc_function_def] = STATE(575), - [sym_preproc_call] = STATE(575), - [sym_preproc_if_in_field_declaration_list] = STATE(575), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), - [sym_preproc_else_in_field_declaration_list] = STATE(2044), - [sym_preproc_elif_in_field_declaration_list] = STATE(2044), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(575), - [sym_field_declaration] = STATE(575), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [608] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2393), + [sym_preproc_elif_in_field_declaration_list] = STATE(2393), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76686,41 +80068,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [578] = { - [sym_preproc_def] = STATE(569), - [sym_preproc_function_def] = STATE(569), - [sym_preproc_call] = STATE(569), - [sym_preproc_if_in_field_declaration_list] = STATE(569), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), - [sym_preproc_else_in_field_declaration_list] = STATE(2246), - [sym_preproc_elif_in_field_declaration_list] = STATE(2246), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(569), - [sym_field_declaration] = STATE(569), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2186), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [609] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2191), + [sym_preproc_elif_in_field_declaration_list] = STATE(2191), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76753,41 +80135,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [579] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2049), - [sym_preproc_elif_in_field_declaration_list] = STATE(2049), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [610] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2338), + [sym_preproc_elif_in_field_declaration_list] = STATE(2338), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76820,41 +80202,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [580] = { - [sym_preproc_def] = STATE(585), - [sym_preproc_function_def] = STATE(585), - [sym_preproc_call] = STATE(585), - [sym_preproc_if_in_field_declaration_list] = STATE(585), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), - [sym_preproc_else_in_field_declaration_list] = STATE(2043), - [sym_preproc_elif_in_field_declaration_list] = STATE(2043), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(585), - [sym_field_declaration] = STATE(585), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [611] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2258), + [sym_preproc_elif_in_field_declaration_list] = STATE(2258), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76887,41 +80269,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [581] = { - [sym_preproc_def] = STATE(579), - [sym_preproc_function_def] = STATE(579), - [sym_preproc_call] = STATE(579), - [sym_preproc_if_in_field_declaration_list] = STATE(579), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(579), - [sym_preproc_else_in_field_declaration_list] = STATE(2055), - [sym_preproc_elif_in_field_declaration_list] = STATE(2055), - [sym__declaration_modifiers] = STATE(893), - [sym__declaration_specifiers] = STATE(1505), - [sym_attribute_specifier] = STATE(893), - [sym_attribute_declaration] = STATE(893), - [sym_ms_declspec_modifier] = STATE(893), - [sym_storage_class_specifier] = STATE(893), - [sym_type_qualifier] = STATE(893), - [sym__type_specifier] = STATE(1073), - [sym_sized_type_specifier] = STATE(1137), - [sym_enum_specifier] = STATE(1137), - [sym_struct_specifier] = STATE(1137), - [sym_union_specifier] = STATE(1137), - [sym__field_declaration_list_item] = STATE(579), - [sym_field_declaration] = STATE(579), - [sym_macro_type_specifier] = STATE(1137), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), - [aux_sym__declaration_specifiers_repeat1] = STATE(893), - [aux_sym_sized_type_specifier_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(2069), - [aux_sym_preproc_def_token1] = ACTIONS(2115), - [aux_sym_preproc_if_token1] = ACTIONS(2117), - [aux_sym_preproc_if_token2] = ACTIONS(2192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), - [aux_sym_preproc_else_token1] = ACTIONS(2079), - [aux_sym_preproc_elif_token1] = ACTIONS(2081), - [sym_preproc_directive] = ACTIONS(2123), + [612] = { + [sym_preproc_def] = STATE(616), + [sym_preproc_function_def] = STATE(616), + [sym_preproc_call] = STATE(616), + [sym_preproc_if_in_field_declaration_list] = STATE(616), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(616), + [sym_preproc_else_in_field_declaration_list] = STATE(2247), + [sym_preproc_elif_in_field_declaration_list] = STATE(2247), + [sym__declaration_modifiers] = STATE(932), + [sym__declaration_specifiers] = STATE(1572), + [sym_attribute_specifier] = STATE(932), + [sym_attribute_declaration] = STATE(932), + [sym_ms_declspec_modifier] = STATE(932), + [sym_storage_class_specifier] = STATE(932), + [sym_type_qualifier] = STATE(932), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(998), + [sym_enum_specifier] = STATE(998), + [sym_struct_specifier] = STATE(998), + [sym_union_specifier] = STATE(998), + [sym__field_declaration_list_item] = STATE(616), + [sym_field_declaration] = STATE(616), + [sym_macro_type_specifier] = STATE(998), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(616), + [aux_sym__declaration_specifiers_repeat1] = STATE(932), + [aux_sym_sized_type_specifier_repeat1] = STATE(1006), + [sym_identifier] = ACTIONS(2099), + [aux_sym_preproc_def_token1] = ACTIONS(2135), + [aux_sym_preproc_if_token1] = ACTIONS(2137), + [aux_sym_preproc_if_token2] = ACTIONS(2212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2141), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2141), + [aux_sym_preproc_else_token1] = ACTIONS(2109), + [aux_sym_preproc_elif_token1] = ACTIONS(2111), + [sym_preproc_directive] = ACTIONS(2143), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -76972,17 +80354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2194), 1, + ACTIONS(2214), 1, anon_sym_RPAREN, - ACTIONS(2196), 1, + ACTIONS(2216), 1, anon_sym___extension__, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1234), 1, + STATE(1280), 1, sym__expression, - STATE(1875), 1, + STATE(1888), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -77023,13 +80405,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77062,17 +80444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2198), 1, + ACTIONS(2218), 1, anon_sym_RPAREN, - ACTIONS(2200), 1, + ACTIONS(2220), 1, anon_sym___extension__, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1236), 1, + STATE(1278), 1, sym__expression, - STATE(1904), 1, + STATE(1942), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -77113,13 +80495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77152,15 +80534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2202), 1, + ACTIONS(2222), 1, anon_sym___extension__, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1282), 1, + STATE(1328), 1, sym__expression, - STATE(1917), 1, + STATE(2120), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -77201,13 +80583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77228,53 +80610,53 @@ static const uint16_t ts_small_parse_table[] = { [342] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, + ACTIONS(2145), 1, sym_identifier, - ACTIONS(2150), 1, + ACTIONS(2168), 1, anon_sym___attribute__, - ACTIONS(2153), 1, + ACTIONS(2171), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, + ACTIONS(2174), 1, anon_sym___declspec, - ACTIONS(2162), 1, + ACTIONS(2180), 1, sym_primitive_type, - ACTIONS(2165), 1, + ACTIONS(2183), 1, anon_sym_enum, - ACTIONS(2168), 1, + ACTIONS(2186), 1, anon_sym_struct, - ACTIONS(2171), 1, + ACTIONS(2189), 1, anon_sym_union, - ACTIONS(2204), 1, + ACTIONS(2224), 1, aux_sym_preproc_def_token1, - ACTIONS(2207), 1, + ACTIONS(2227), 1, aux_sym_preproc_if_token1, - ACTIONS(2213), 1, + ACTIONS(2233), 1, sym_preproc_directive, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1505), 1, + STATE(1572), 1, sym__declaration_specifiers, - ACTIONS(2210), 2, + ACTIONS(2230), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2136), 3, + ACTIONS(2154), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(2159), 4, + ACTIONS(2177), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77282,7 +80664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(585), 8, + STATE(616), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -77291,7 +80673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, + ACTIONS(2162), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77301,7 +80683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2147), 10, + ACTIONS(2165), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -77325,15 +80707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, + ACTIONS(1548), 1, anon_sym_LBRACE, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1288), 1, + STATE(1315), 1, sym__expression, - STATE(1960), 1, + STATE(2087), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -77374,13 +80756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77401,38 +80783,26 @@ static const uint16_t ts_small_parse_table[] = { [561] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2216), 1, - anon_sym_SEMI, - STATE(816), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1258), 1, + STATE(861), 1, + sym_initializer_list, + STATE(1100), 1, sym__expression, - STATE(2136), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77442,6 +80812,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77460,13 +80842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77493,19 +80875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, + ACTIONS(1548), 1, anon_sym_LBRACE, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, - sym_string_literal, - STATE(827), 1, + STATE(861), 1, sym_initializer_list, - STATE(1013), 1, + STATE(890), 1, + sym_string_literal, + STATE(902), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77516,16 +80898,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77546,13 +80928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77583,15 +80965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2218), 1, - anon_sym_RPAREN, - STATE(816), 1, + ACTIONS(2244), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(1278), 1, + STATE(1285), 1, sym__expression, - STATE(2213), 1, + STATE(2125), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77632,13 +81014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77659,72 +81041,72 @@ static const uint16_t ts_small_parse_table[] = { [888] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 1, + ACTIONS(1824), 1, anon_sym_LBRACE, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1939), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(949), 1, + STATE(996), 1, sym__expression, - STATE(984), 1, + STATE(1053), 1, sym_initializer_list, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77742,7 +81124,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [997] = 23, + [997] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(861), 1, + sym_initializer_list, + STATE(890), 1, + sym_string_literal, + STATE(902), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1552), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1104] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77755,15 +81222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2228), 1, - anon_sym_RPAREN, - STATE(816), 1, + ACTIONS(2258), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(1271), 1, + STATE(1347), 1, sym__expression, - STATE(2211), 1, + STATE(2339), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77804,13 +81271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77828,32 +81295,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1106] = 22, + [1213] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, - anon_sym_LPAREN2, - STATE(816), 1, + ACTIONS(2260), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(827), 1, - sym_initializer_list, - STATE(868), 1, + STATE(1349), 1, sym__expression, + STATE(2337), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77863,15 +81339,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1536), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77890,12 +81357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77904,16 +81376,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1213] = 23, + [1322] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77926,15 +81394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2234), 1, - anon_sym_RPAREN, - STATE(816), 1, + ACTIONS(2262), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1281), 1, + STATE(1338), 1, sym__expression, - STATE(2217), 1, + STATE(2380), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77975,13 +81443,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77999,7 +81467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1322] = 23, + [1431] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78012,15 +81480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2236), 1, - anon_sym_SEMI, - STATE(816), 1, + ACTIONS(2264), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1250), 1, + STATE(1331), 1, sym__expression, - STATE(2279), 1, + STATE(2132), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78061,13 +81529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78085,69 +81553,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1431] = 22, + [1540] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 1, - anon_sym_LBRACE, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(949), 1, - sym__expression, - STATE(984), 1, + STATE(861), 1, sym_initializer_list, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + STATE(1100), 1, + sym__expression, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78170,29 +81638,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1538] = 22, + [1647] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(816), 1, + ACTIONS(2270), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(827), 1, - sym_initializer_list, - STATE(1013), 1, + STATE(1289), 1, sym__expression, + STATE(2208), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78202,18 +81682,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78232,12 +81700,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78246,50 +81719,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1645] = 23, + [1756] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2248), 1, - anon_sym_SEMI, - STATE(816), 1, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1290), 1, + STATE(861), 1, + sym_initializer_list, + STATE(902), 1, sym__expression, - STATE(2027), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78299,6 +81759,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78317,17 +81786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78336,12 +81800,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [1754] = 23, + [1863] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78354,15 +81822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2250), 1, - anon_sym_SEMI, - STATE(816), 1, + ACTIONS(2276), 1, + anon_sym_RPAREN, + STATE(845), 1, sym_string_literal, - STATE(1244), 1, + STATE(1307), 1, sym__expression, - STATE(2079), 1, + STATE(2420), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78403,13 +81871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78427,7 +81895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1863] = 23, + [1972] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78440,16 +81908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2252), 1, - anon_sym_RPAREN, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1297), 1, + STATE(861), 1, + sym_initializer_list, + STATE(902), 1, sym__expression, - STATE(2094), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78489,13 +81957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78513,29 +81981,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1972] = 22, + [2081] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, + ACTIONS(1548), 1, anon_sym_LBRACE, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2254), 1, - anon_sym_LPAREN2, - STATE(827), 1, - sym_initializer_list, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(868), 1, + STATE(1318), 1, sym__expression, + STATE(2102), 1, + sym_initializer_list, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78545,18 +82025,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1526), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2258), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78575,12 +82043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78589,38 +82062,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [2079] = 23, + [2190] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(827), 1, - sym_initializer_list, - STATE(867), 1, + ACTIONS(2278), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(868), 1, + STATE(1332), 1, sym__expression, + STATE(2238), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78630,18 +82111,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1931), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78660,13 +82129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78684,7 +82153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2188] = 23, + [2299] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78697,16 +82166,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1548), 1, + anon_sym_LBRACE, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2266), 1, - anon_sym_SEMI, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1253), 1, + STATE(1351), 1, sym__expression, - STATE(2029), 1, - sym_comma_expression, + STATE(2043), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78746,13 +82215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78770,7 +82239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2297] = 23, + [2408] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78783,15 +82252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2268), 1, + ACTIONS(2280), 1, anon_sym_SEMI, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1275), 1, + STATE(1303), 1, sym__expression, - STATE(2247), 1, + STATE(2382), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78832,13 +82301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78856,7 +82325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2406] = 23, + [2517] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78869,15 +82338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2270), 1, + ACTIONS(2282), 1, anon_sym_RPAREN, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1241), 1, + STATE(1290), 1, sym__expression, - STATE(2244), 1, + STATE(2240), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78918,13 +82387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78942,7 +82411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2515] = 23, + [2626] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78955,15 +82424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2272), 1, + ACTIONS(2284), 1, anon_sym_SEMI, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1261), 1, + STATE(1302), 1, sym__expression, - STATE(2250), 1, + STATE(2379), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79004,13 +82473,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79028,7 +82497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2624] = 23, + [2735] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79041,16 +82510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2286), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1295), 1, + STATE(1304), 1, sym__expression, - STATE(1955), 1, - sym_initializer_list, + STATE(2291), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79090,13 +82559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79114,7 +82583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2733] = 23, + [2844] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79127,15 +82596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2274), 1, - anon_sym_SEMI, - STATE(816), 1, + ACTIONS(2288), 1, + anon_sym_RPAREN, + STATE(845), 1, sym_string_literal, - STATE(1257), 1, + STATE(1291), 1, sym__expression, - STATE(2135), 1, + STATE(2210), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79176,13 +82645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79200,7 +82669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2842] = 23, + [2953] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79213,15 +82682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2276), 1, - anon_sym_RPAREN, - STATE(816), 1, + ACTIONS(2290), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1292), 1, + STATE(1353), 1, sym__expression, - STATE(2237), 1, + STATE(2398), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79262,13 +82731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79286,7 +82755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2951] = 23, + [3062] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79299,16 +82768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2292), 1, + anon_sym_RPAREN, + STATE(845), 1, sym_string_literal, STATE(1299), 1, sym__expression, - STATE(1956), 1, - sym_initializer_list, + STATE(2271), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79348,13 +82817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79372,7 +82841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3060] = 23, + [3171] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79385,16 +82854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1528), 1, - anon_sym_LBRACE, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2294), 1, + anon_sym_RPAREN, + STATE(845), 1, sym_string_literal, - STATE(827), 1, - sym_initializer_list, - STATE(868), 1, + STATE(1293), 1, sym__expression, + STATE(2212), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79434,13 +82903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79458,7 +82927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3169] = 22, + [3280] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79471,13 +82940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2296), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1260), 1, + STATE(1320), 1, sym__expression, - STATE(2070), 1, + STATE(2391), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79518,13 +82989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79542,67 +83013,69 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3275] = 21, + [3389] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1824), 1, + anon_sym_LBRACE, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - ACTIONS(2278), 1, - anon_sym_RBRACK, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1025), 1, + STATE(996), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1899), 2, + STATE(1053), 1, + sym_initializer_list, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79625,92 +83098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3379] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(2280), 1, - aux_sym_preproc_def_token1, - ACTIONS(2282), 1, - aux_sym_preproc_if_token1, - ACTIONS(2284), 1, - aux_sym_preproc_if_token2, - ACTIONS(2288), 1, - sym_preproc_directive, - STATE(1073), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1499), 1, - sym__declaration_specifiers, - ACTIONS(2286), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(626), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3487] = 22, + [3496] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79723,14 +83111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2290), 1, + ACTIONS(2304), 1, anon_sym_COLON, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1334), 1, + STATE(1296), 1, sym__expression, + STATE(2183), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79770,13 +83160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79794,7 +83184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3593] = 22, + [3605] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79807,13 +83197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2306), 1, + anon_sym_COLON, + STATE(845), 1, sym_string_literal, - STATE(1235), 1, + STATE(1305), 1, sym__expression, - STATE(1974), 1, + STATE(2263), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79854,13 +83246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79878,7 +83270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3699] = 22, + [3714] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79891,14 +83283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2292), 1, - anon_sym_COLON, - STATE(816), 1, + ACTIONS(2308), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(1318), 1, + STATE(1312), 1, sym__expression, + STATE(2149), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -79938,13 +83332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79962,7 +83356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3805] = 22, + [3823] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79975,14 +83369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2294), 1, - anon_sym_COLON, - STATE(816), 1, + ACTIONS(2310), 1, + anon_sym_SEMI, + STATE(845), 1, sym_string_literal, - STATE(1309), 1, + STATE(1294), 1, sym__expression, + STATE(2264), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80022,13 +83418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80046,27 +83442,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3911] = 21, + [3932] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2296), 1, - anon_sym_RBRACK, - STATE(816), 1, + ACTIONS(2312), 1, + anon_sym_RPAREN, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1300), 1, sym__expression, + STATE(2213), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80076,18 +83486,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80106,12 +83504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80120,63 +83523,59 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4015] = 23, + [4041] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2150), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2162), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(2165), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(2168), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(2171), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2298), 1, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2314), 1, aux_sym_preproc_def_token1, - ACTIONS(2301), 1, + ACTIONS(2316), 1, aux_sym_preproc_if_token1, - ACTIONS(2307), 1, + ACTIONS(2320), 1, sym_preproc_directive, - ACTIONS(2310), 1, + ACTIONS(2322), 1, anon_sym_RBRACE, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1503), 1, + STATE(1576), 1, sym__declaration_specifiers, - ACTIONS(2304), 2, + ACTIONS(2318), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80184,7 +83583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(619), 8, + STATE(667), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -80193,7 +83592,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80203,7 +83602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2147), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80214,7 +83613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4123] = 21, + [4149] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80223,17 +83622,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2312), 1, + ACTIONS(2324), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4253] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + ACTIONS(2326), 1, + anon_sym_RBRACK, + STATE(845), 1, + sym_string_literal, + STATE(1130), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4357] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + ACTIONS(2328), 1, + anon_sym_RBRACK, + STATE(845), 1, + sym_string_literal, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80244,16 +83809,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80274,7 +83839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80297,39 +83862,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4227] = 22, + [4461] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2314), 1, - anon_sym_COLON, - STATE(816), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + ACTIONS(2330), 1, + anon_sym_RBRACK, + STATE(845), 1, sym_string_literal, - STATE(1333), 1, + STATE(1130), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80339,6 +83892,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80357,17 +83922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80376,12 +83936,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4333] = 22, + [4565] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80394,14 +83958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1314), 1, + STATE(1350), 1, sym__expression, + STATE(2347), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -80441,96 +84005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [4439] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2318), 1, - anon_sym_RBRACK, - STATE(816), 1, - sym_string_literal, - STATE(1025), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80539,16 +84024,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [4543] = 21, + [4671] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80557,17 +84038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2320), 1, + ACTIONS(2332), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80578,16 +84059,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80608,7 +84089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80631,7 +84112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4647] = 21, + [4775] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80640,17 +84121,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2322), 1, + ACTIONS(2334), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80661,16 +84142,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80691,7 +84172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80714,7 +84195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4751] = 23, + [4879] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -80731,23 +84212,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2280), 1, + ACTIONS(2336), 1, aux_sym_preproc_def_token1, - ACTIONS(2282), 1, + ACTIONS(2338), 1, aux_sym_preproc_if_token1, - ACTIONS(2288), 1, - sym_preproc_directive, - ACTIONS(2324), 1, + ACTIONS(2340), 1, aux_sym_preproc_if_token2, - STATE(1073), 1, + ACTIONS(2344), 1, + sym_preproc_directive, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1499), 1, + STATE(1574), 1, sym__declaration_specifiers, - ACTIONS(2286), 2, + ACTIONS(2342), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -80755,13 +84236,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80769,7 +84250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(632), 8, + STATE(668), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -80799,7 +84280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4859] = 21, + [4987] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -80808,17 +84289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2326), 1, + ACTIONS(2346), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -80829,16 +84310,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -80859,7 +84340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80882,54 +84363,54 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4963] = 23, + [5091] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2145), 1, + sym_identifier, + ACTIONS(2168), 1, anon_sym___attribute__, - ACTIONS(37), 1, + ACTIONS(2171), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2174), 1, anon_sym___declspec, - ACTIONS(49), 1, + ACTIONS(2180), 1, sym_primitive_type, - ACTIONS(51), 1, + ACTIONS(2183), 1, anon_sym_enum, - ACTIONS(53), 1, + ACTIONS(2186), 1, anon_sym_struct, - ACTIONS(55), 1, + ACTIONS(2189), 1, anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(2328), 1, + ACTIONS(2348), 1, aux_sym_preproc_def_token1, - ACTIONS(2330), 1, + ACTIONS(2351), 1, aux_sym_preproc_if_token1, - ACTIONS(2334), 1, + ACTIONS(2357), 1, sym_preproc_directive, - ACTIONS(2336), 1, + ACTIONS(2360), 1, anon_sym_RBRACE, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1503), 1, + STATE(1576), 1, sym__declaration_specifiers, - ACTIONS(2332), 2, + ACTIONS(2354), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, + ACTIONS(2177), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -80937,7 +84418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(634), 8, + STATE(660), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -80946,7 +84427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, + ACTIONS(2162), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80956,7 +84437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + ACTIONS(2165), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -80967,7 +84448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5071] = 22, + [5199] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80980,14 +84461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2338), 1, - anon_sym_COLON, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1310), 1, + STATE(1327), 1, sym__expression, + STATE(2222), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81027,13 +84508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81051,7 +84532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5177] = 21, + [5305] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81060,17 +84541,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2340), 1, + ACTIONS(2362), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5409] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + ACTIONS(2364), 1, + anon_sym_RBRACK, + STATE(845), 1, + sym_string_literal, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81081,16 +84645,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81111,7 +84675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81134,7 +84698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5281] = 21, + [5513] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81143,17 +84707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - ACTIONS(2342), 1, + ACTIONS(2366), 1, anon_sym_RBRACK, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1130), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81164,16 +84728,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81194,7 +84758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81217,54 +84781,54 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5385] = 23, + [5617] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, - sym_identifier, - ACTIONS(2136), 1, - aux_sym_preproc_if_token2, - ACTIONS(2150), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2153), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2156), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2162), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(2165), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(2168), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(2171), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2344), 1, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(2336), 1, aux_sym_preproc_def_token1, - ACTIONS(2347), 1, + ACTIONS(2338), 1, aux_sym_preproc_if_token1, - ACTIONS(2353), 1, + ACTIONS(2344), 1, sym_preproc_directive, - STATE(1073), 1, + ACTIONS(2368), 1, + aux_sym_preproc_if_token2, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1499), 1, + STATE(1574), 1, sym__declaration_specifiers, - ACTIONS(2350), 2, + ACTIONS(2342), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2159), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81272,7 +84836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(632), 8, + STATE(658), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -81281,7 +84845,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(2144), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -81291,7 +84855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2147), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -81302,7 +84866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5493] = 22, + [5725] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81315,14 +84879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2356), 1, - anon_sym_COLON, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1335), 1, + STATE(1274), 1, sym__expression, + STATE(2013), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81362,13 +84926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81386,7 +84950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5599] = 23, + [5831] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -81403,23 +84967,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2328), 1, + ACTIONS(2314), 1, aux_sym_preproc_def_token1, - ACTIONS(2330), 1, + ACTIONS(2316), 1, aux_sym_preproc_if_token1, - ACTIONS(2334), 1, + ACTIONS(2320), 1, sym_preproc_directive, - ACTIONS(2358), 1, + ACTIONS(2370), 1, anon_sym_RBRACE, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1503), 1, + STATE(1576), 1, sym__declaration_specifiers, - ACTIONS(2332), 2, + ACTIONS(2318), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -81427,13 +84991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81441,7 +85005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(619), 8, + STATE(660), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -81471,174 +85035,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [5707] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - ACTIONS(2360), 1, - anon_sym_RBRACK, - STATE(816), 1, - sym_string_literal, - STATE(1025), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5811] = 22, + [5939] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2145), 1, sym_identifier, - ACTIONS(2362), 1, - anon_sym_COLON, - STATE(816), 1, - sym_string_literal, - STATE(1304), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5917] = 22, + ACTIONS(2154), 1, + aux_sym_preproc_if_token2, + ACTIONS(2168), 1, + anon_sym___attribute__, + ACTIONS(2171), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2174), 1, + anon_sym___declspec, + ACTIONS(2180), 1, + sym_primitive_type, + ACTIONS(2183), 1, + anon_sym_enum, + ACTIONS(2186), 1, + anon_sym_struct, + ACTIONS(2189), 1, + anon_sym_union, + ACTIONS(2372), 1, + aux_sym_preproc_def_token1, + ACTIONS(2375), 1, + aux_sym_preproc_if_token1, + ACTIONS(2381), 1, + sym_preproc_directive, + STATE(955), 1, + sym__type_specifier, + STATE(1006), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1574), 1, + sym__declaration_specifiers, + ACTIONS(2378), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2177), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(932), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(668), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2162), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2165), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [6047] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81651,14 +85133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1279), 1, + STATE(1218), 1, sym__expression, - STATE(2139), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -81698,13 +85178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81722,7 +85202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6023] = 21, + [6150] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81731,15 +85211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1285), 1, + STATE(1129), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81750,16 +85230,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81780,94 +85260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6126] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, - anon_sym_offsetof, - ACTIONS(1718), 1, - anon_sym__Generic, - ACTIONS(1722), 1, - sym_number_literal, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(950), 1, - sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1724), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1726), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81876,16 +85279,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6227] = 21, + [6253] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81898,11 +85297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1313), 1, + STATE(1365), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81943,13 +85342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81967,7 +85366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6330] = 21, + [6356] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81980,11 +85379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1232), 1, + STATE(1301), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82025,13 +85424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82049,25 +85448,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6433] = 20, + [6459] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1035), 1, + STATE(1379), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82077,18 +85488,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82107,12 +85506,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82121,74 +85525,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6534] = 20, + [6562] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(932), 1, + STATE(995), 1, sym__expression, - ACTIONS(1706), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82211,7 +85611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6635] = 21, + [6663] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82224,11 +85624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1307), 1, + STATE(1224), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82269,13 +85669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82293,7 +85693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6738] = 21, + [6766] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82306,11 +85706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1337), 1, + STATE(1222), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82351,13 +85751,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82375,7 +85775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6841] = 21, + [6869] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82388,11 +85788,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1289), 1, + STATE(1215), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -82433,13 +85833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82457,7 +85857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6944] = 20, + [6972] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82466,15 +85866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1550), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(926), 1, + STATE(900), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -82488,13 +85888,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82515,7 +85915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82538,71 +85938,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7045] = 21, + [7073] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2364), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(933), 1, + STATE(891), 1, sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82620,158 +86020,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7148] = 26, + [7176] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(2095), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2097), 1, - anon_sym_RPAREN, - ACTIONS(2105), 1, - anon_sym_LBRACK, - ACTIONS(2366), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, - anon_sym_STAR, - STATE(1073), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, - sym__declaration_specifiers, - STATE(1705), 1, - sym_parameter_list, - STATE(1783), 1, - sym__abstract_declarator, - STATE(1848), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1703), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [7261] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(950), 1, + STATE(1223), 1, sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82789,71 +86102,152 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7364] = 21, + [7279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(932), 1, + STATE(900), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [7380] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1945), 1, + sym_identifier, + STATE(845), 1, + sym_string_literal, + STATE(1229), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82871,75 +86265,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7467] = 21, + [7483] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(1206), 1, + STATE(889), 1, sym__expression, - ACTIONS(1720), 2, + STATE(890), 1, + sym_string_literal, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82948,12 +86337,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7570] = 21, + [7584] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -82966,11 +86359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1308), 1, + STATE(1238), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83011,13 +86404,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83035,25 +86428,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7673] = 20, + [7687] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2370), 1, - anon_sym_LPAREN2, - STATE(866), 1, - sym__expression, - STATE(867), 1, + STATE(845), 1, sym_string_literal, + STATE(1367), 1, + sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83063,18 +86468,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1526), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2258), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83093,12 +86486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83107,16 +86505,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7774] = 20, + [7790] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83125,15 +86519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(869), 1, + STATE(1352), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83144,16 +86538,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83174,93 +86568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1138), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7875] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, - anon_sym_offsetof, - ACTIONS(1718), 1, - anon_sym__Generic, - ACTIONS(1722), 1, - sym_number_literal, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(945), 1, - sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1724), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1726), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83269,16 +86587,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [7976] = 20, + [7893] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83287,15 +86601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(1037), 1, + STATE(899), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83306,16 +86620,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83336,7 +86650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83359,70 +86673,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8077] = 20, + [7994] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(944), 1, + STATE(1214), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83431,79 +86750,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8178] = 20, + [8097] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(943), 1, + STATE(1324), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83512,74 +86832,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8279] = 20, + [8200] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(942), 1, + STATE(889), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83602,151 +86918,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8380] = 20, + [8301] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(941), 1, + STATE(1247), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1088), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [8481] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, - anon_sym_offsetof, - ACTIONS(1718), 1, - anon_sym__Generic, - ACTIONS(1722), 1, - sym_number_literal, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(940), 1, - sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1724), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1726), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(990), 22, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83755,74 +86995,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8582] = 20, + [8404] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2384), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(939), 1, + STATE(887), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83845,70 +87081,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8683] = 20, + [8505] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(938), 1, + STATE(1276), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83917,16 +87158,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8784] = 21, + [8608] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -83939,11 +87176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1303), 1, + STATE(900), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -83984,13 +87221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84008,70 +87245,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8887] = 20, + [8711] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(937), 1, + STATE(1249), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84080,79 +87322,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [8988] = 20, + [8814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(935), 1, + STATE(1225), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84161,37 +87404,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9089] = 20, + [8917] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(914), 1, + STATE(1220), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84201,15 +87449,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1536), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84228,12 +87467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84242,79 +87486,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9190] = 20, + [9020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(936), 1, + STATE(1217), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84323,16 +87568,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9291] = 20, + [9123] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84341,15 +87582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1038), 1, + STATE(1372), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84360,16 +87601,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84390,12 +87631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84404,46 +87650,33 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9392] = 21, + [9226] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1322), 1, + STATE(899), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84453,6 +87686,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84471,17 +87713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84490,12 +87727,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9495] = 21, + [9327] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84504,16 +87745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(860), 1, - sym__expression, - STATE(867), 1, + STATE(890), 1, sym_string_literal, + STATE(1209), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84523,16 +87764,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84553,13 +87794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84577,65 +87818,146 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9598] = 20, + [9430] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(946), 1, + STATE(980), 1, sym__expression, - ACTIONS(1706), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(2274), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9531] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(845), 1, + sym_string_literal, + STATE(891), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84658,65 +87980,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9699] = 20, + [9632] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2240), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(948), 1, + STATE(1039), 1, sym__expression, - ACTIONS(1706), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1708), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84739,7 +88061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9800] = 21, + [9733] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84748,16 +88070,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1550), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1259), 1, + STATE(979), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84767,16 +88092,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84797,17 +88119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84816,12 +88133,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9903] = 21, + [9834] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84830,16 +88151,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(864), 1, - sym__expression, - STATE(867), 1, + STATE(845), 1, sym_string_literal, + STATE(978), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84849,16 +88173,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84879,17 +88200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84898,80 +88214,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10006] = 21, + [9935] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1262), 1, + STATE(1001), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1943), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84980,70 +88295,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10109] = 20, + [10036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2386), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(901), 1, + STATE(1002), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1524), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85066,25 +88385,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10210] = 20, + [10137] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(997), 1, + STATE(1281), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85094,18 +88425,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85124,12 +88443,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85138,16 +88462,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [10311] = 20, + [10240] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85156,16 +88476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(860), 1, - sym__expression, - STATE(867), 1, + STATE(845), 1, sym_string_literal, + STATE(977), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85175,16 +88498,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85205,7 +88525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85228,25 +88548,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10412] = 21, + [10341] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1270), 1, + STATE(1357), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85256,18 +88588,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1945), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2009), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85286,13 +88606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85310,7 +88630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10515] = 20, + [10444] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85319,16 +88639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1550), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1034), 1, + STATE(976), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85338,16 +88661,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85368,7 +88688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85391,7 +88711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10616] = 20, + [10545] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85400,16 +88720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2388), 1, anon_sym_LPAREN2, - STATE(816), 1, - sym_string_literal, - STATE(1033), 1, + STATE(887), 1, sym__expression, + STATE(890), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85419,16 +88739,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85449,7 +88769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85472,7 +88792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10717] = 20, + [10646] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85481,16 +88801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1550), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1039), 1, + STATE(975), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85500,16 +88823,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85530,7 +88850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85553,71 +88873,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10818] = 21, + [10747] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2390), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1017), 1, + STATE(1002), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85635,37 +88955,28 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10921] = 21, + [10850] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1188), 1, + STATE(973), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85675,6 +88986,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85693,17 +89013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85712,12 +89027,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11024] = 20, + [10951] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85726,16 +89045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(903), 1, + STATE(972), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85745,16 +89067,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85775,7 +89094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85798,25 +89117,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11125] = 21, + [11052] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1265), 1, + STATE(1310), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85826,18 +89157,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1945), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2009), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85856,13 +89175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85880,70 +89199,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11228] = 20, + [11155] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1032), 1, + STATE(1001), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85952,46 +89276,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11329] = 21, + [11258] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1957), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1301), 1, + STATE(1337), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86001,6 +89309,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86019,13 +89339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86043,7 +89363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11432] = 20, + [11361] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86052,15 +89372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1026), 1, + STATE(1330), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86071,16 +89391,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86101,93 +89421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1138), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_subscript_expression, sym_call_expression, - sym_gnu_asm_expression, sym_field_expression, - sym_compound_literal_expression, sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11533] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, - anon_sym_sizeof, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(816), 1, - sym_string_literal, - STATE(998), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86196,161 +89440,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [11634] = 20, + [11464] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2372), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1020), 1, + STATE(1039), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1899), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1901), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(843), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11735] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - anon_sym_LPAREN2, - STATE(816), 1, - sym_string_literal, - STATE(1256), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1943), 2, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86368,7 +89527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11838] = 21, + [11567] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86377,15 +89536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1255), 1, + STATE(1096), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86396,16 +89555,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86426,13 +89585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86450,7 +89609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11941] = 20, + [11670] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86459,16 +89618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(907), 1, + STATE(971), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86478,16 +89640,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86508,7 +89667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86531,7 +89690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12042] = 20, + [11771] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86540,15 +89699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(909), 1, + STATE(1323), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86559,16 +89718,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86589,12 +89748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86603,16 +89767,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12143] = 20, + [11874] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86621,15 +89781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(910), 1, + STATE(1322), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86640,16 +89800,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86670,12 +89830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86684,16 +89849,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12244] = 20, + [11977] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86702,15 +89863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(911), 1, + STATE(1321), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86721,16 +89882,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86751,12 +89912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86765,79 +89931,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12345] = 20, + [12080] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(902), 1, + STATE(1252), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86846,16 +90013,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12446] = 20, + [12183] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86864,15 +90027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(1036), 1, + STATE(891), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86883,16 +90046,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86913,7 +90076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86936,70 +90099,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12547] = 20, + [12284] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(913), 1, + STATE(1253), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87008,46 +90176,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12648] = 21, + [12387] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1957), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1312), 1, + STATE(1319), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87057,6 +90209,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1959), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1961), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87075,13 +90239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87099,70 +90263,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12751] = 20, + [12490] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(912), 1, + STATE(1251), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87171,79 +90340,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12852] = 20, + [12593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1712), 1, - anon_sym_sizeof, - ACTIONS(1716), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(2238), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2374), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(933), 1, + STATE(1250), 1, sym__expression, - ACTIONS(1706), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1708), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1720), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2224), 2, + ACTIONS(1951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2242), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(990), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87252,79 +90422,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12953] = 20, + [12696] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2246), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(906), 1, + STATE(1254), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87333,79 +90504,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13054] = 20, + [12799] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1040), 1, + STATE(1256), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87414,79 +90586,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13155] = 20, + [12902] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1017), 1, + STATE(1244), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87495,79 +90668,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13256] = 20, + [13005] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1955), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2246), 1, + sym_identifier, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(1042), 1, + STATE(1260), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1953), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87576,80 +90750,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13357] = 21, + [13108] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1320), 1, + STATE(1018), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87667,71 +90837,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13460] = 21, + [13211] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1231), 1, + STATE(1259), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87749,7 +90919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13563] = 21, + [13314] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87758,15 +90928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1264), 1, + STATE(1314), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87777,16 +90947,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87807,13 +90977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87831,37 +91001,107 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13666] = 21, + [13417] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1266), 1, + STATE(1257), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1838), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1840), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1088), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(1073), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [13520] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1943), 1, + anon_sym_sizeof, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, + anon_sym_LPAREN2, + STATE(890), 1, + sym_string_literal, + STATE(1202), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87871,6 +91111,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1939), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1941), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87889,13 +91141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87913,7 +91165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13769] = 20, + [13623] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87922,15 +91174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(890), 1, sym_string_literal, - STATE(905), 1, + STATE(891), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87941,16 +91193,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87971,12 +91223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(983), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87985,46 +91242,30 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13870] = 21, + [13726] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1943), 1, + anon_sym_sizeof, + ACTIONS(2236), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2238), 1, + anon_sym_LPAREN2, + STATE(890), 1, sym_string_literal, - STATE(1187), 1, + STATE(1203), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88034,6 +91275,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1939), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1941), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -88052,13 +91305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88076,7 +91329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13973] = 20, + [13829] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88085,16 +91338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1530), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(864), 1, - sym__expression, - STATE(867), 1, + STATE(890), 1, sym_string_literal, + STATE(1204), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88104,16 +91357,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1524), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88134,12 +91387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(983), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88148,16 +91406,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14074] = 21, + [13932] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88166,15 +91420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1252), 1, + STATE(1308), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -88185,16 +91439,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88215,13 +91469,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88239,37 +91493,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14177] = 21, + [14035] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1943), 1, + anon_sym_sizeof, + ACTIONS(2236), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2238), 1, + anon_sym_LPAREN2, + STATE(890), 1, sym_string_literal, - STATE(1191), 1, + STATE(1205), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88279,6 +91521,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1939), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1941), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -88297,13 +91551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88321,7 +91575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14280] = 20, + [14138] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88330,19 +91584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(919), 1, + STATE(1284), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88352,13 +91603,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88379,12 +91633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88393,16 +91652,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14381] = 20, + [14241] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88411,19 +91666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(920), 1, + STATE(1292), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88433,13 +91685,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88460,12 +91715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88474,16 +91734,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14482] = 20, + [14344] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88492,19 +91748,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(921), 1, + STATE(1206), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88514,13 +91767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88541,12 +91797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(983), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88555,16 +91816,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14583] = 20, + [14447] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88573,19 +91830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(922), 1, + STATE(1212), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88595,13 +91849,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88622,12 +91879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(983), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88636,16 +91898,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14684] = 20, + [14550] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88654,19 +91912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(923), 1, + STATE(1374), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -88676,13 +91931,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88703,12 +91961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88717,16 +91980,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14785] = 21, + [14653] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88735,15 +91994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1327), 1, + STATE(1380), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -88754,16 +92013,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88784,13 +92043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88808,75 +92067,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14888] = 21, + [14756] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(910), 1, sym_string_literal, - STATE(1207), 1, + STATE(988), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(1820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(1730), 2, + ACTIONS(1844), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88885,12 +92139,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14991] = 21, + [14857] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88899,15 +92157,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2392), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1251), 1, + STATE(1127), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -88918,16 +92176,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88948,17 +92206,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [14960] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, + anon_sym_offsetof, + ACTIONS(1832), 1, + anon_sym__Generic, + ACTIONS(1836), 1, + sym_number_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, + sym_string_literal, + STATE(1018), 1, + sym__expression, + ACTIONS(1820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1838), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1840), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88967,12 +92302,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15094] = 20, + [15061] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88981,19 +92320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(864), 1, + STATE(1130), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89003,13 +92339,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89030,7 +92369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89053,65 +92392,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15195] = 20, + [15162] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1530), 1, - anon_sym_sizeof, - ACTIONS(1532), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(870), 1, + STATE(999), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1524), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1526), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2258), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89134,7 +92473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15296] = 21, + [15263] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -89147,11 +92486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1176), 1, + STATE(1282), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89192,13 +92531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89216,7 +92555,88 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15399] = 21, + [15366] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, + anon_sym_offsetof, + ACTIONS(1832), 1, + anon_sym__Generic, + ACTIONS(1836), 1, + sym_number_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, + sym_string_literal, + STATE(990), 1, + sym__expression, + ACTIONS(1820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1838), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1840), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1073), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15467] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -89229,11 +92649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1193), 1, + STATE(1358), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89274,13 +92694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89298,65 +92718,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15502] = 20, + [15570] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(910), 1, sym_string_literal, - STATE(860), 1, + STATE(1005), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1534), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89379,7 +92799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15603] = 20, + [15671] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89388,19 +92808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(2376), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(866), 1, + STATE(1345), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89410,13 +92827,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89437,12 +92857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1138), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89451,84 +92876,75 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15704] = 21, + [15774] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1331), 1, + STATE(1033), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89537,80 +92953,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15807] = 21, + [15875] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1237), 1, + STATE(993), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89619,12 +93034,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15910] = 21, + [15976] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -89637,11 +93056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1195), 1, + STATE(1275), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -89682,13 +93101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89706,37 +93125,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16013] = 21, + [16079] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1196), 1, + STATE(1131), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89746,6 +93153,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89764,17 +93183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89783,42 +93197,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16116] = 21, + [16180] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2378), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(866), 1, + STATE(1119), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89828,6 +93234,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89846,17 +93264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89865,12 +93278,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16219] = 21, + [16281] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89879,15 +93296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1330), 1, + STATE(1135), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89898,16 +93315,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89928,17 +93345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89947,42 +93359,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16322] = 21, + [16382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(860), 1, + STATE(1134), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89992,6 +93396,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90010,17 +93426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90029,12 +93440,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16425] = 21, + [16483] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90043,15 +93458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1171), 1, + STATE(1133), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90062,16 +93477,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90092,17 +93507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90111,80 +93521,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16528] = 21, + [16584] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(864), 1, + STATE(994), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90193,12 +93602,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16631] = 21, + [16685] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90207,16 +93620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2380), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(866), 1, - sym__expression, - STATE(867), 1, + STATE(845), 1, sym_string_literal, + STATE(1120), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90226,16 +93639,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90256,17 +93669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90275,12 +93683,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16734] = 21, + [16786] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90289,15 +93701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1963), 1, + anon_sym_sizeof, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1163), 1, + STATE(1132), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90308,16 +93720,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90338,13 +93750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90362,7 +93774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16837] = 21, + [16889] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90371,15 +93783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(890), 1, sym_string_literal, - STATE(869), 1, + STATE(1211), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90390,16 +93802,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90420,13 +93832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90444,7 +93856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16940] = 21, + [16992] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90453,15 +93865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1174), 1, + STATE(1117), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90472,16 +93884,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90502,17 +93914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90521,12 +93928,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17043] = 21, + [17093] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90535,15 +93946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1172), 1, + STATE(1098), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90554,16 +93965,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90584,17 +93995,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90603,94 +94009,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17146] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, - anon_sym_offsetof, - ACTIONS(1718), 1, - anon_sym__Generic, - ACTIONS(1722), 1, - sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(1204), 1, - sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2226), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1724), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1726), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17249] = 21, + [17194] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90699,15 +94027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1161), 1, + STATE(1099), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90718,16 +94046,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90748,17 +94076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90767,42 +94090,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17352] = 21, + [17295] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1197), 1, + STATE(1101), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90812,6 +94127,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1915), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1917), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2033), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90830,17 +94157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90849,12 +94171,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17455] = 21, + [17396] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90863,15 +94189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1026), 1, + STATE(1102), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90882,16 +94208,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90912,17 +94238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90931,12 +94252,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17558] = 21, + [17497] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90945,15 +94270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1170), 1, + STATE(1132), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -90964,16 +94289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90994,17 +94319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91013,30 +94333,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17661] = 21, + [17598] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1168), 1, + STATE(1382), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -91046,18 +94382,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1931), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2256), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2264), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91076,13 +94400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91100,7 +94424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17764] = 20, + [17701] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91109,15 +94433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(1903), 1, + ACTIONS(1919), 1, anon_sym_sizeof, - ACTIONS(2244), 1, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1025), 1, + STATE(1129), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91128,16 +94452,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1899), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1901), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91158,7 +94482,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [17802] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, + anon_sym_offsetof, + ACTIONS(1832), 1, + anon_sym__Generic, + ACTIONS(1836), 1, + sym_number_literal, + ACTIONS(2298), 1, + sym_identifier, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, + sym_string_literal, + STATE(997), 1, + sym__expression, + ACTIONS(1820), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1838), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1840), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91181,7 +94586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17865] = 21, + [17903] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91190,15 +94595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2394), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(845), 1, sym_string_literal, - STATE(1167), 1, + STATE(1127), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91209,16 +94614,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91239,17 +94644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91258,12 +94658,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17968] = 21, + [18004] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91272,15 +94676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(998), 1, + STATE(1207), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91291,16 +94695,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91321,13 +94725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91345,7 +94749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18071] = 21, + [18107] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91354,15 +94758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2382), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(1020), 1, + STATE(1213), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91373,16 +94777,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91403,13 +94807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91427,7 +94831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18174] = 21, + [18210] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -91440,11 +94844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1945), 1, sym_identifier, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1328), 1, + STATE(1370), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -91485,13 +94889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91509,7 +94913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18277] = 21, + [18313] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91518,15 +94922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1957), 1, sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1963), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2029), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1323), 1, + STATE(1335), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91537,16 +94941,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1959), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1961), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2039), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91567,13 +94971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1138), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91591,28 +94995,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18380] = 20, + [18416] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(924), 1, + STATE(1371), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -91622,13 +95035,86 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [18519] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1943), 1, + anon_sym_sizeof, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2396), 1, + anon_sym_LPAREN2, + STATE(887), 1, + sym__expression, + STATE(890), 1, + sym_string_literal, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91649,12 +95135,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(983), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91663,16 +95154,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18481] = 21, + [18622] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91681,16 +95168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(867), 1, - sym_string_literal, - STATE(1166), 1, + STATE(889), 1, sym__expression, + STATE(890), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -91700,16 +95187,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91730,13 +95217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91754,75 +95241,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18584] = 21, + [18725] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1826), 1, + anon_sym_sizeof, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2298), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(2300), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(910), 1, sym_string_literal, - STATE(1164), 1, + STATE(1021), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1929), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1822), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2302), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91831,12 +95313,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18687] = 21, + [18826] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -91845,15 +95331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(1999), 1, + ACTIONS(2236), 1, + sym_identifier, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(1280), 1, + STATE(900), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91864,16 +95350,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91894,13 +95380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91918,37 +95404,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18790] = 21, + [18929] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(890), 1, sym_string_literal, - STATE(1199), 1, + STATE(954), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -91958,6 +95432,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1552), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -91976,17 +95462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91995,42 +95476,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18893] = 21, + [19030] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(890), 1, sym_string_literal, - STATE(1178), 1, + STATE(942), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92040,6 +95513,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1552), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92058,17 +95543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92077,42 +95557,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18996] = 21, + [19131] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(890), 1, sym_string_literal, - STATE(1192), 1, + STATE(940), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92122,6 +95594,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1552), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1554), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92140,17 +95624,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92159,42 +95638,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19099] = 21, + [19232] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1538), 1, sym_identifier, - STATE(816), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(845), 1, sym_string_literal, - STATE(1198), 1, + STATE(957), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92204,6 +95678,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1544), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2274), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92222,17 +95705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92241,80 +95719,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19202] = 21, + [19333] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(869), 1, + STATE(1032), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92323,12 +95800,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19305] = 20, + [19434] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92337,19 +95818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(931), 1, + STATE(953), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92359,13 +95837,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92386,7 +95867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92409,7 +95890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19406] = 20, + [19535] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92418,19 +95899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(925), 1, + STATE(952), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92440,13 +95918,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92467,7 +95948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92490,7 +95971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19507] = 21, + [19636] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92499,15 +95980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(890), 1, sym_string_literal, - STATE(1162), 1, + STATE(951), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92518,16 +95999,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92548,17 +96029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92567,112 +96043,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19610] = 21, + [19737] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1941), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(1248), 1, + STATE(1377), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1945), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2003), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2009), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(1046), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19713] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1941), 1, - sym_identifier, - ACTIONS(1947), 1, - anon_sym_sizeof, - ACTIONS(1999), 1, - anon_sym_LPAREN2, - STATE(816), 1, - sym_string_literal, - STATE(1249), 1, - sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92682,18 +96092,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1945), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2003), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2009), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92712,13 +96110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1046), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92736,7 +96134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19816] = 21, + [19840] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92745,15 +96143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(890), 1, sym_string_literal, - STATE(1173), 1, + STATE(948), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -92764,16 +96162,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92794,17 +96192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92813,33 +96206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19919] = 20, + [19941] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2398), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(869), 1, + STATE(887), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92849,15 +96255,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1536), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -92876,12 +96273,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(1003), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -92890,16 +96292,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20020] = 20, + [20044] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -92908,19 +96306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, - sym_identifier, ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1556), 1, anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(816), 1, + STATE(890), 1, sym_string_literal, - STATE(928), 1, + STATE(947), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -92930,13 +96325,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1536), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2232), 2, + ACTIONS(2240), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -92957,7 +96355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -92980,28 +96378,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20121] = 20, + [20145] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1532), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(1538), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, - anon_sym_LPAREN2, - STATE(816), 1, + STATE(845), 1, sym_string_literal, - STATE(870), 1, + STATE(1242), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -93011,15 +96418,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1534), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1536), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -93038,94 +96436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(843), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20222] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, - anon_sym_offsetof, - ACTIONS(1718), 1, - anon_sym__Generic, - ACTIONS(1722), 1, - sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, - sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, - sym_string_literal, - STATE(1211), 1, - sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2226), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1724), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1726), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93143,75 +96460,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20325] = 21, + [20248] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1550), 1, + anon_sym_sizeof, + ACTIONS(2272), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(1212), 1, + STATE(963), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1544), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2274), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -93220,76 +96532,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20428] = 21, + [20349] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(1214), 1, + STATE(889), 1, sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93307,75 +96623,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20531] = 21, + [20452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(1201), 1, + STATE(946), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -93384,76 +96695,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20634] = 21, + [20553] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(1215), 1, + STATE(1210), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93471,75 +96786,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20737] = 21, + [20656] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(1216), 1, + STATE(945), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -93548,76 +96858,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20840] = 21, + [20757] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(1217), 1, + STATE(1201), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93635,71 +96949,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20943] = 21, + [20860] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(1218), 1, + STATE(1361), 1, sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93717,75 +97031,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21046] = 21, + [20963] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(1919), 1, + anon_sym_sizeof, + ACTIONS(2266), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(935), 1, + STATE(1096), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1915), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1917), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2033), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -93794,76 +97103,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21149] = 21, + [21064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, - anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(1945), 1, sym_identifier, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(877), 1, + STATE(845), 1, sym_string_literal, - STATE(1202), 1, + STATE(1283), 1, sym__expression, - ACTIONS(1720), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(1003), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93881,71 +97194,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21252] = 21, + [21167] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(1955), 1, + anon_sym_sizeof, + ACTIONS(2246), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1239), 1, + STATE(1258), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1834), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1842), 2, + sym_true, + sym_false, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1953), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2250), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2252), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, + STATE(1088), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -93963,7 +97276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21355] = 21, + [21270] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -93972,15 +97285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1933), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1538), 1, sym_identifier, - ACTIONS(2262), 1, + ACTIONS(1556), 1, + anon_sym_sizeof, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(867), 1, + STATE(890), 1, sym_string_literal, - STATE(1165), 1, + STATE(944), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -93991,16 +97304,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1929), 2, + ACTIONS(1552), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1931), 2, + ACTIONS(1554), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2256), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2264), 2, + ACTIONS(2256), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -94021,17 +97334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(916), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(884), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -94040,76 +97348,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21458] = 21, + [21371] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1716), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1718), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1722), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1939), 1, + ACTIONS(1943), 1, anon_sym_sizeof, - ACTIONS(2220), 1, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2238), 1, anon_sym_LPAREN2, - STATE(877), 1, + STATE(890), 1, sym_string_literal, - STATE(1213), 1, + STATE(1208), 1, sym__expression, - ACTIONS(1720), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1728), 2, - sym_true, - sym_false, - ACTIONS(1730), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1935), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1939), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1937), 2, + ACTIONS(1941), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2240), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2226), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1714), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1724), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1726), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(995), 5, + STATE(983), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(990), 17, + STATE(884), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -94127,75 +97439,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21561] = 21, + [21474] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1826), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1830), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1832), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1836), 1, sym_number_literal, - ACTIONS(1919), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(816), 1, + ACTIONS(2300), 1, + anon_sym_LPAREN2, + STATE(910), 1, sym_string_literal, - STATE(1238), 1, + STATE(1004), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1820), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1822), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1834), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1842), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1844), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2250), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2302), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1828), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1838), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(947), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(843), 17, + STATE(1073), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -94204,30 +97511,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21664] = 14, + [21575] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1963), 1, - anon_sym_const, ACTIONS(1967), 1, + anon_sym_const, + ACTIONS(1971), 1, anon_sym_LPAREN2, - ACTIONS(1973), 1, + ACTIONS(1977), 1, anon_sym_STAR, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - STATE(799), 1, + STATE(824), 1, sym_string_literal, - STATE(1106), 1, + STATE(1017), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1976), 2, + ACTIONS(2006), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2384), 4, + ACTIONS(2400), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -94238,7 +97549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1979), 8, + ACTIONS(1980), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -94247,7 +97558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -94258,7 +97569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 11, + ACTIONS(1975), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -94270,7 +97581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 12, + ACTIONS(1969), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94283,72 +97594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21752] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 1, - sym_identifier, - STATE(792), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2393), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2391), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2389), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [21823] = 21, + [21663] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94365,19 +97611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2396), 1, + ACTIONS(2402), 1, anon_sym_LBRACE, - STATE(890), 1, + STATE(915), 1, sym_ms_call_modifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1522), 1, + STATE(1430), 1, sym__declaration_specifiers, - STATE(386), 3, + STATE(228), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -94386,7 +97632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -94399,7 +97645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94428,7 +97674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21924] = 21, + [21764] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94445,19 +97691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2398), 1, + ACTIONS(2404), 1, anon_sym_LBRACE, - STATE(882), 1, + STATE(914), 1, sym_ms_call_modifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1512), 1, + STATE(1417), 1, sym__declaration_specifiers, - STATE(239), 3, + STATE(535), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -94466,7 +97712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -94479,7 +97725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94508,12 +97754,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22025] = 6, + [21865] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + sym_identifier, + STATE(825), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2410), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2408), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [21936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(2412), 1, sym_identifier, - STATE(792), 2, + STATE(827), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -94522,7 +97833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2404), 16, + ACTIONS(2416), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94539,7 +97850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2402), 33, + ACTIONS(2414), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94573,7 +97884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22096] = 21, + [22007] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94590,19 +97901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2406), 1, + ACTIONS(2418), 1, anon_sym_LBRACE, - STATE(888), 1, + STATE(919), 1, sym_ms_call_modifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1524), 1, + STATE(1423), 1, sym__declaration_specifiers, - STATE(413), 3, + STATE(490), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -94611,7 +97922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -94624,7 +97935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94653,7 +97964,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22197] = 21, + [22108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + sym_identifier, + STATE(827), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2427), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2425), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2423), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [22179] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94670,19 +98046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2408), 1, + ACTIONS(2430), 1, anon_sym_LBRACE, - STATE(885), 1, + STATE(921), 1, sym_ms_call_modifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1517), 1, + STATE(1431), 1, sym__declaration_specifiers, - STATE(492), 3, + STATE(465), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -94691,7 +98067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -94704,7 +98080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94733,7 +98109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22298] = 21, + [22280] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94750,19 +98126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2410), 1, + ACTIONS(2432), 1, anon_sym_LBRACE, - STATE(883), 1, + STATE(920), 1, sym_ms_call_modifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1521), 1, + STATE(1432), 1, sym__declaration_specifiers, - STATE(155), 3, + STATE(152), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -94771,7 +98147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -94784,7 +98160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94813,21 +98189,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22399] = 6, + [22381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 1, - sym_identifier, - STATE(795), 2, + STATE(824), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2416), 16, + ACTIONS(1975), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94844,7 +98217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2414), 33, + sym_identifier, + ACTIONS(1969), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94878,18 +98252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22470] = 5, + [22449] = 3, ACTIONS(3), 1, sym_comment, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1971), 17, + ACTIONS(2434), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94907,7 +98273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1965), 33, + ACTIONS(2436), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94941,10 +98307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22538] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [22512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 17, + ACTIONS(2438), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94962,7 +98333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2420), 38, + ACTIONS(2440), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95001,10 +98372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [22601] = 3, + [22575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 17, + ACTIONS(2442), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95019,10 +98390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2424), 38, + ACTIONS(2444), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95038,8 +98412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -95056,15 +98431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [22664] = 3, + [22637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 20, + ACTIONS(2446), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95085,7 +98455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2428), 34, + ACTIONS(2448), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95120,10 +98490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22726] = 3, + [22699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 20, + ACTIONS(2450), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95144,7 +98514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2432), 34, + ACTIONS(2452), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95179,10 +98549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22788] = 3, + [22761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 20, + ACTIONS(2454), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95203,7 +98573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2436), 34, + ACTIONS(2456), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95238,10 +98608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22850] = 3, + [22823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 20, + ACTIONS(2458), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95262,7 +98632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2440), 34, + ACTIONS(2460), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95297,10 +98667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22912] = 3, + [22885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 20, + ACTIONS(2462), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95321,7 +98691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2444), 34, + ACTIONS(2464), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95356,10 +98726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22974] = 3, + [22947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 20, + ACTIONS(2466), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95380,7 +98750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2448), 34, + ACTIONS(2468), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95415,10 +98785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23036] = 3, + [23009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 20, + ACTIONS(2470), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95439,7 +98809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2452), 34, + ACTIONS(2472), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95474,10 +98844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23098] = 3, + [23071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 20, + ACTIONS(2474), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95498,7 +98868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2456), 34, + ACTIONS(2476), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95533,10 +98903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23160] = 3, + [23133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 20, + ACTIONS(2478), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95557,7 +98927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2460), 34, + ACTIONS(2480), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95592,10 +98962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23222] = 3, + [23195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 20, + ACTIONS(2482), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95610,13 +98980,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2464), 34, + ACTIONS(2484), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95632,9 +98999,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -95651,67 +99018,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23284] = 3, + [23254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 21, + ACTIONS(2496), 1, + anon_sym___attribute__, + ACTIONS(2499), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2502), 1, + anon_sym___declspec, + ACTIONS(2488), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + STATE(844), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2490), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2493), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2486), 17, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [23325] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + sym_identifier, + STATE(824), 1, + sym_string_literal, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1921), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2466), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2509), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -95727,15 +99109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - sym_identifier, - ACTIONS(2468), 34, + ACTIONS(2507), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95744,7 +99121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -95763,10 +99139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23402] = 3, + [23390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 21, + ACTIONS(1937), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95788,7 +99164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2466), 30, + ACTIONS(1935), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -95819,69 +99195,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23461] = 6, + [23449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, - sym_identifier, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, + ACTIONS(2484), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2474), 15, + ACTIONS(2482), 30, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2472), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23526] = 3, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [23508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1927), 21, + ACTIONS(1949), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -95903,7 +99276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1925), 30, + ACTIONS(1947), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -95934,7 +99307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23585] = 20, + [23567] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95949,21 +99322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(150), 1, + STATE(502), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(881), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95971,13 +99344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96006,7 +99379,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23677] = 20, + [23659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2513), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [23717] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96021,21 +99449,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(149), 1, + STATE(453), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -96043,13 +99471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96078,117 +99506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2476), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2478), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2482), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23885] = 20, + [23809] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96203,21 +99521,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(449), 1, + STATE(154), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(840), 2, + STATE(854), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -96225,13 +99543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96260,62 +99578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2484), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2486), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24035] = 20, + [23901] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96330,35 +99593,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2095), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2097), 1, - anon_sym_RPAREN, - STATE(1073), 1, + STATE(250), 1, + sym_compound_statement, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(1848), 2, - sym_variadic_parameter, - sym_parameter_declaration, + STATE(898), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96387,7 +99650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24127] = 20, + [23993] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96402,21 +99665,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(434), 1, + STATE(161), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(845), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -96424,13 +99687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96459,7 +99722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24219] = 20, + [24085] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96474,21 +99737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(476), 1, + STATE(165), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(852), 2, + STATE(860), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -96496,13 +99759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96531,10 +99794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24311] = 3, + [24177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 17, + ACTIONS(2515), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96552,7 +99815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2490), 33, + ACTIONS(2517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -96586,10 +99849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24369] = 3, + [24235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 17, + ACTIONS(2519), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96607,7 +99870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2494), 33, + ACTIONS(2521), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -96641,10 +99904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24427] = 3, + [24293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 17, + ACTIONS(2523), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96662,7 +99925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2498), 33, + ACTIONS(2525), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -96696,7 +99959,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24485] = 20, + [24351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2529), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [24409] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96711,21 +100029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(438), 1, + STATE(150), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -96733,13 +100051,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96768,10 +100086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24577] = 3, + [24501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 17, + ACTIONS(2531), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96789,7 +100107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2502), 33, + ACTIONS(2533), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -96823,7 +100141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24635] = 20, + [24559] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96838,35 +100156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2535), 1, sym_identifier, - STATE(217), 1, - sym_compound_statement, - STATE(1073), 1, + ACTIONS(2537), 1, + anon_sym_RPAREN, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1443), 1, sym__declaration_specifiers, - STATE(861), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1861), 1, + sym_variadic_parameter, + STATE(2016), 1, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -96895,62 +100214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2506), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24785] = 20, + [24653] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -96965,35 +100229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2019), 1, + anon_sym_RPAREN, + ACTIONS(2099), 1, sym_identifier, - STATE(222), 1, - sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1443), 1, sym__declaration_specifiers, - STATE(832), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(2016), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97022,10 +100286,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24877] = 3, + [24745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 17, + ACTIONS(2539), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -97043,7 +100307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2510), 33, + ACTIONS(2541), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -97077,10 +100341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24935] = 3, + [24803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 17, + ACTIONS(2543), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -97098,7 +100362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2514), 33, + ACTIONS(2545), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -97132,7 +100396,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24993] = 20, + [24861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2549), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [24919] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97151,17 +100470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(226), 1, + STATE(229), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(853), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97169,13 +100488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97204,13 +100523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25085] = 20, + [25011] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -97219,21 +100540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(551), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(472), 1, + STATE(525), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(830), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97241,13 +100560,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97276,10 +100595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25177] = 3, + [25103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 17, + ACTIONS(2551), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -97297,7 +100616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2518), 33, + ACTIONS(2553), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -97331,79 +100650,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25235] = 20, + [25161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2555), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(475), 1, - sym_compound_statement, - STATE(1073), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, - sym__declaration_specifiers, - STATE(861), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [25327] = 20, + ACTIONS(2557), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25219] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97418,21 +100720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(142), 1, + STATE(253), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(819), 2, + STATE(876), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97440,13 +100742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97475,65 +100777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2522), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25477] = 3, + [25311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 17, + ACTIONS(2559), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -97551,7 +100798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2526), 33, + ACTIONS(2561), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -97585,15 +100832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25535] = 20, + [25369] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -97602,19 +100847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(565), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(493), 1, + STATE(412), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(849), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97622,13 +100869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97657,7 +100904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25627] = 20, + [25461] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97676,17 +100923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(474), 1, + STATE(489), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(851), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97694,13 +100941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97729,7 +100976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25719] = 20, + [25553] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97744,21 +100991,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(565), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(157), 1, + STATE(431), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(818), 2, + STATE(873), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97766,13 +101013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97801,62 +101048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2530), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25869] = 20, + [25645] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97875,17 +101067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(241), 1, + STATE(234), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(837), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97893,13 +101085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97928,7 +101120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25961] = 20, + [25737] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97947,17 +101139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(506), 1, + STATE(532), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -97965,13 +101157,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98000,7 +101192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26053] = 21, + [25829] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98015,36 +101207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(565), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2095), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2532), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(2534), 1, - anon_sym_RPAREN, - STATE(1073), 1, + STATE(434), 1, + sym_compound_statement, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(1758), 1, - sym_variadic_parameter, - STATE(1848), 1, - sym_parameter_declaration, + STATE(898), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98073,7 +101264,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26147] = 20, + [25921] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(565), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2099), 1, + sym_identifier, + STATE(450), 1, + sym_compound_statement, + STATE(955), 1, + sym__type_specifier, + STATE(1006), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1420), 1, + sym__declaration_specifiers, + STATE(878), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(932), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26013] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98092,17 +101355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(491), 1, + STATE(510), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(853), 2, + STATE(868), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -98110,13 +101373,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98145,7 +101408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26239] = 20, + [26105] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98164,17 +101427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(458), 1, + STATE(492), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(898), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -98182,13 +101445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98217,7 +101480,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26331] = 20, + [26197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2563), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2565), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2569), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_DOT, + sym_identifier, + ACTIONS(2573), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26371] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98236,17 +101664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(499), 1, + STATE(523), 1, sym_compound_statement, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1420), 1, sym__declaration_specifiers, - STATE(861), 2, + STATE(877), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -98254,13 +101682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98289,10 +101717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26423] = 3, + [26463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 17, + ACTIONS(2575), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98310,7 +101738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2538), 33, + ACTIONS(2577), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -98344,10 +101772,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [26481] = 3, + [26521] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 17, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2579), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98363,17 +101803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2542), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2581), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -98382,8 +101819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -98396,80 +101831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [26539] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(2095), 1, - anon_sym_DOT_DOT_DOT, - STATE(1073), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, - sym__declaration_specifiers, - STATE(1914), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [26628] = 20, + [26588] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98486,32 +101848,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2095), 1, + ACTIONS(2017), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2544), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1389), 1, + STATE(1443), 1, sym__declaration_specifiers, - STATE(1914), 1, - sym_parameter_declaration, - STATE(1972), 1, + STATE(2084), 2, sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98540,10 +101901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26719] = 3, + [26677] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 16, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2591), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98560,14 +101933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2548), 33, + ACTIONS(2593), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -98575,9 +101947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -98590,14 +101960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26776] = 3, + [26744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 16, + STATE(824), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2509), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98611,12 +101985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2552), 33, + ACTIONS(2507), 28, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -98628,11 +102000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -98648,22 +102016,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26833] = 8, + [26805] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2554), 16, + ACTIONS(2595), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98680,7 +102048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2556), 26, + ACTIONS(2597), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -98707,48 +102075,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26900] = 19, + [26872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2575), 1, + ACTIONS(2599), 16, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(2578), 1, + anon_sym_EQ, + sym_identifier, + ACTIONS(2601), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2605), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2581), 1, - anon_sym___declspec, - ACTIONS(2584), 1, anon_sym_LBRACE, - ACTIONS(2589), 1, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2603), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, - ACTIONS(2592), 1, anon_sym_enum, - ACTIONS(2595), 1, anon_sym_struct, - ACTIONS(2598), 1, anon_sym_union, - STATE(1073), 1, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + [26986] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2607), 1, + sym_identifier, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1516), 1, + STATE(1443), 1, sym__declaration_specifiers, - STATE(861), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2586), 4, + STATE(2084), 1, + sym_parameter_declaration, + STATE(2095), 1, + sym_variadic_parameter, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98756,7 +102233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2569), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98766,7 +102243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2572), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -98777,10 +102254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26989] = 3, + [27077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 16, + ACTIONS(2609), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98797,7 +102274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2603), 33, + ACTIONS(2611), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -98831,12 +102308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27046] = 7, + [27134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2605), 1, + ACTIONS(2613), 1, anon_sym_EQ, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98844,7 +102321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2607), 10, + ACTIONS(2615), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98855,7 +102332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 14, + ACTIONS(1975), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98870,7 +102347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, sym_identifier, - ACTIONS(1965), 18, + ACTIONS(1969), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98889,68 +102366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27111] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2609), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, - sym_identifier, - ACTIONS(2611), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [27176] = 3, + [27199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 16, + ACTIONS(2617), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -98967,7 +102386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2615), 33, + ACTIONS(2619), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -99001,22 +102420,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27233] = 8, + [27256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2621), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym___attribute__, + ACTIONS(2633), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2636), 1, + anon_sym___declspec, + ACTIONS(2639), 1, + anon_sym_LBRACE, + ACTIONS(2644), 1, + sym_primitive_type, + ACTIONS(2647), 1, + anon_sym_enum, + ACTIONS(2650), 1, + anon_sym_struct, + ACTIONS(2653), 1, + anon_sym_union, + STATE(955), 1, + sym__type_specifier, + STATE(1006), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1420), 1, + sym__declaration_specifiers, + STATE(898), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2641), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(932), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2624), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2627), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [27345] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2617), 16, + ACTIONS(2656), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99033,7 +102522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2619), 26, + ACTIONS(2658), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -99060,18 +102549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27300] = 5, + [27412] = 7, ACTIONS(3), 1, sym_comment, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2474), 15, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2660), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99085,22 +102575,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2472), 28, + ACTIONS(2662), 28, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99114,24 +102607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27361] = 8, + [27477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2621), 16, + ACTIONS(2664), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99148,13 +102627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2623), 26, + ACTIONS(2666), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -99162,7 +102642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -99175,22 +102657,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27428] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [27534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 16, + ACTIONS(2668), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -99207,7 +102693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2627), 26, + ACTIONS(2670), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -99234,23 +102720,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27495] = 8, + [27601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2629), 16, - aux_sym_preproc_elif_token1, + ACTIONS(2672), 1, + sym_identifier, + STATE(904), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1840), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2416), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99263,25 +102747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym_EQ, - sym_identifier, - ACTIONS(2631), 26, + ACTIONS(2414), 27, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99293,21 +102772,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27562] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [27663] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2633), 1, + ACTIONS(2674), 1, sym_identifier, - STATE(874), 2, + STATE(904), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1726), 5, + ACTIONS(2677), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2404), 13, + ACTIONS(2425), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99321,7 +102804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2402), 27, + ACTIONS(2423), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99349,21 +102832,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27624] = 6, + [27725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 1, + ACTIONS(2680), 1, sym_identifier, - STATE(871), 2, + STATE(903), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2416), 13, + ACTIONS(2410), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99377,7 +102860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2414), 27, + ACTIONS(2408), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99405,12 +102888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27686] = 7, + [27787] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -99418,7 +102901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99429,7 +102912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99442,7 +102925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 19, + ACTIONS(1969), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -99462,76 +102945,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27750] = 6, + [27851] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2637), 1, - sym_identifier, - STATE(874), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2640), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2391), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2389), 27, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27812] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2643), 1, + ACTIONS(2682), 1, anon_sym_EQ, - STATE(872), 1, + STATE(905), 1, sym_string_literal, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2645), 10, + ACTIONS(2684), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99542,7 +102969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 13, + ACTIONS(1975), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99556,7 +102983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, sym_identifier, - ACTIONS(1965), 17, + ACTIONS(1969), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99574,18 +103001,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27875] = 5, + [27914] = 5, ACTIONS(3), 1, sym_comment, - STATE(872), 1, + STATE(908), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2690), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2686), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2688), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [27973] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(905), 1, sym_string_literal, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1971), 14, + ACTIONS(1975), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99600,7 +103081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(1965), 27, + ACTIONS(1969), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99628,18 +103109,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27934] = 5, + [28032] = 5, ACTIONS(3), 1, sym_comment, - STATE(872), 1, + STATE(905), 1, sym_string_literal, - ACTIONS(1726), 5, + ACTIONS(1840), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2474), 14, + ACTIONS(2509), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99654,7 +103135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2472), 27, + ACTIONS(2507), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99682,126 +103163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27993] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(878), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2651), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2647), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2649), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28052] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - STATE(1073), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1542), 1, - sym__declaration_specifiers, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(893), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [28134] = 17, + [28091] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99818,26 +103180,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1539), 1, + STATE(1523), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99866,58 +103228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2424), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [28270] = 17, + [28173] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99934,26 +103245,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1554), 1, + STATE(1541), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -99982,7 +103293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28352] = 17, + [28255] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -99999,26 +103310,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1559), 1, + STATE(1497), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100047,7 +103358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28434] = 17, + [28337] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100064,26 +103375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1537), 1, + STATE(1554), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100112,7 +103423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28516] = 17, + [28419] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100129,26 +103440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1545), 1, + STATE(1549), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100177,7 +103488,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28598] = 17, + [28501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_identifier, + ACTIONS(2440), 32, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [28555] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100194,26 +103556,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1536), 1, + STATE(1512), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100242,10 +103604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28680] = 3, + [28637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 14, + ACTIONS(2434), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100260,7 +103622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2420), 32, + ACTIONS(2436), 32, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100293,7 +103655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [28734] = 17, + [28691] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100310,26 +103672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1553), 1, + STATE(1555), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100358,7 +103720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28816] = 17, + [28773] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100375,26 +103737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1541), 1, + STATE(1550), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100423,7 +103785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28898] = 17, + [28855] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -100440,26 +103802,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1073), 1, + STATE(955), 1, sym__type_specifier, - STATE(1118), 1, + STATE(1006), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1555), 1, + STATE(1551), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(893), 7, + STATE(932), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100488,69 +103850,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28980] = 8, + [28937] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, - anon_sym_EQ, - ACTIONS(1989), 1, - anon_sym_COLON, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1987), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1971), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29043] = 8, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2099), 1, + sym_identifier, + STATE(955), 1, + sym__type_specifier, + STATE(1006), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1543), 1, + sym__declaration_specifiers, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(932), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [29019] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(1995), 1, + ACTIONS(1986), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -100558,7 +103930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100569,7 +103941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100582,7 +103954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100598,60 +103970,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29106] = 16, + [29082] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2069), 1, - sym_identifier, - STATE(1052), 1, - sym__type_specifier, - STATE(1118), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(897), 7, - sym__declaration_modifiers, + ACTIONS(2697), 1, + anon_sym_LBRACE, + STATE(965), 1, + sym_field_declaration_list, + STATE(1009), 1, sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(2695), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2693), 34, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -100661,14 +104014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29185] = 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [29143] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(1993), 1, + ACTIONS(2013), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -100676,7 +104039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100687,7 +104050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100700,7 +104063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100716,10 +104079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29248] = 3, + [29206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 19, + ACTIONS(2701), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -100739,7 +104102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2654), 26, + ACTIONS(2699), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -100766,14 +104129,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [29301] = 8, + [29259] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1984), 1, + anon_sym_EQ, + ACTIONS(2011), 1, + anon_sym_COLON, + STATE(824), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1988), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1975), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [29322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(2658), 1, + ACTIONS(2703), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -100781,7 +104199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100792,7 +104210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100805,7 +104223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100821,22 +104239,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29364] = 9, + [29385] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2697), 1, + anon_sym_LBRACE, + STATE(966), 1, + sym_field_declaration_list, + STATE(1015), 1, + sym_attribute_specifier, + ACTIONS(2707), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2705), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [29446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2670), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2673), 1, + ACTIONS(2697), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym_field_declaration_list, + STATE(1024), 1, + sym_attribute_specifier, + ACTIONS(2711), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2676), 1, + anon_sym_COLON, + ACTIONS(2709), 34, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, - ACTIONS(2662), 5, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [29507] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2697), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_field_declaration_list, + STATE(992), 1, + sym_attribute_specifier, + ACTIONS(2715), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(897), 7, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2713), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [29568] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2099), 1, + sym_identifier, + STATE(960), 1, + sym__type_specifier, + STATE(1006), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(844), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -100844,7 +104443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2664), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -100854,7 +104453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2667), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -100865,26 +104464,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2660), 11, + [29647] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2697), 1, + anon_sym_LBRACE, + STATE(985), 1, + sym_field_declaration_list, + STATE(1034), 1, + sym_attribute_specifier, + ACTIONS(2719), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2717), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29429] = 8, + [29708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(2009), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -100892,7 +104533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100903,7 +104544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100916,7 +104557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100932,14 +104573,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29492] = 8, + [29771] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(1997), 1, + ACTIONS(2004), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -100947,7 +104588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100958,7 +104599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100971,7 +104612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -100987,14 +104628,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29555] = 8, + [29834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2699), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2721), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29940] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(1991), 1, + ACTIONS(1990), 1, anon_sym_COLON, - STATE(799), 1, + STATE(824), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -101002,7 +104743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1987), 10, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101013,7 +104754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101026,7 +104767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 15, + ACTIONS(1969), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -101042,183 +104783,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29618] = 20, + [30003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2689), 1, - anon_sym_AMP_AMP, - ACTIONS(2691), 1, - anon_sym_PIPE, - ACTIONS(2693), 1, - anon_sym_CARET, - ACTIONS(2695), 1, - anon_sym_AMP, - ACTIONS(2705), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2681), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2683), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2699), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2701), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2703), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2679), 16, + ACTIONS(1949), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [29704] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2695), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2683), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2697), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2699), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2701), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2703), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 4, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2627), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1947), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29780] = 20, + [30055] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2733), 1, anon_sym_PIPE_PIPE, - ACTIONS(2689), 1, + ACTIONS(2735), 1, anon_sym_AMP_AMP, - ACTIONS(2691), 1, + ACTIONS(2737), 1, anon_sym_PIPE, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2695), 1, + ACTIONS(2741), 1, anon_sym_AMP, - ACTIONS(2705), 1, + ACTIONS(2751), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2683), 2, + ACTIONS(2727), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2707), 16, + ACTIONS(2725), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101235,56 +104898,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29866] = 20, + [30141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1937), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(1935), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30193] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2687), 1, + ACTIONS(2733), 1, anon_sym_PIPE_PIPE, - ACTIONS(2689), 1, + ACTIONS(2735), 1, anon_sym_AMP_AMP, - ACTIONS(2691), 1, + ACTIONS(2737), 1, anon_sym_PIPE, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2695), 1, + ACTIONS(2741), 1, anon_sym_AMP, - ACTIONS(2705), 1, + ACTIONS(2751), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2683), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2713), 2, + ACTIONS(2755), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2711), 16, + ACTIONS(2753), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101301,114 +105013,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29952] = 9, + [30279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2685), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 11, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2627), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2733), 1, anon_sym_PIPE_PIPE, + ACTIONS(2735), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [30016] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2689), 1, - anon_sym_AMP_AMP, - ACTIONS(2691), 1, + ACTIONS(2737), 1, anon_sym_PIPE, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2695), 1, + ACTIONS(2741), 1, anon_sym_AMP, - STATE(829), 1, + ACTIONS(2751), 1, + anon_sym_QMARK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2683), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2685), 3, + ACTIONS(2759), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 18, + ACTIONS(2757), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101420,92 +105079,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30098] = 10, + [30365] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2683), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 9, + ACTIONS(2595), 11, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2627), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [30164] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2715), 1, - anon_sym_EQ, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2717), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1971), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -101513,56 +105109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1965), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30224] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2683), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2703), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2627), 23, + ACTIONS(2597), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101586,113 +105134,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30292] = 13, + [30429] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2683), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2699), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2701), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2703), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2685), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 5, - aux_sym_preproc_elif_token1, + ACTIONS(2735), 1, + anon_sym_AMP_AMP, + ACTIONS(2737), 1, anon_sym_PIPE, + ACTIONS(2739), 1, anon_sym_CARET, + ACTIONS(2741), 1, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2627), 21, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [30364] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2683), 2, + ACTIONS(2595), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2627), 19, + ACTIONS(2597), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -101705,50 +105198,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30438] = 17, + [30511] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2737), 1, anon_sym_PIPE, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2695), 1, + ACTIONS(2741), 1, anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 2, + ACTIONS(2595), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2683), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 19, + ACTIONS(2597), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101768,49 +105261,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30518] = 16, + [30591] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2693), 1, + ACTIONS(2739), 1, anon_sym_CARET, - ACTIONS(2695), 1, + ACTIONS(2741), 1, anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2683), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2697), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2699), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2701), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2703), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, + ACTIONS(2595), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2685), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 19, + ACTIONS(2597), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101830,219 +105323,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30596] = 20, + [30669] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2681), 1, - anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, - anon_sym_AMP_AMP, - ACTIONS(2727), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, - anon_sym_AMP, ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2737), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2679), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30681] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2713), 1, - anon_sym_EQ, - ACTIONS(2723), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, - anon_sym_AMP_AMP, - ACTIONS(2727), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2741), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, + ACTIONS(2743), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2735), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2711), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2605), 1, - anon_sym_EQ, - ACTIONS(2607), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1971), 13, + ACTIONS(2595), 4, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 19, + anon_sym_EQ, + ACTIONS(2597), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [30821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2613), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2615), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102054,103 +105383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_identifier, - [30872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2745), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2743), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - anon_sym_asm, - anon_sym___asm__, sym_identifier, - [30923] = 10, + [30745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2761), 1, anon_sym_EQ, - ACTIONS(2627), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, + STATE(824), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2763), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102161,109 +105408,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30988] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(1975), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2627), 23, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1969), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [30805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2765), 38, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31055] = 13, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30857] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2735), 2, + ACTIONS(2743), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, + ACTIONS(2595), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2627), 21, + ACTIONS(2597), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102275,54 +105545,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31126] = 14, + sym_identifier, + [30931] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 2, + ACTIONS(2745), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, + ACTIONS(2747), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, + ACTIONS(2595), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2627), 19, + ACTIONS(2597), 21, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102334,55 +105604,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31199] = 15, + sym_identifier, + [31003] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2731), 1, - anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2737), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2749), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2721), 3, + ACTIONS(2731), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 19, + ACTIONS(2595), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2597), 23, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102394,56 +105661,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31274] = 16, + sym_identifier, + [31071] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, - anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2719), 2, + ACTIONS(2729), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 2, + ACTIONS(2731), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 19, + anon_sym_EQ, + ACTIONS(2597), 23, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102455,117 +105717,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31351] = 17, + sym_identifier, + [31137] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2771), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2727), 1, - anon_sym_PIPE, - ACTIONS(2729), 1, - anon_sym_CARET, - ACTIONS(2731), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2719), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2733), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2735), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2737), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2739), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2721), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 19, + anon_sym_SEMI, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2769), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [31200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1030), 1, + sym_attribute_specifier, + ACTIONS(2775), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31430] = 20, + ACTIONS(2773), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31255] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2755), 1, anon_sym_EQ, - ACTIONS(2723), 1, + ACTIONS(2781), 1, anon_sym_PIPE_PIPE, - ACTIONS(2725), 1, + ACTIONS(2783), 1, anon_sym_AMP_AMP, - ACTIONS(2727), 1, + ACTIONS(2785), 1, anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2787), 1, anon_sym_CARET, - ACTIONS(2731), 1, + ACTIONS(2789), 1, anon_sym_AMP, - ACTIONS(2741), 1, + ACTIONS(2799), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2735), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2707), 16, + ACTIONS(2753), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -102582,10 +105887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31515] = 3, + [31340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 14, + ACTIONS(2664), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102600,7 +105905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2603), 29, + ACTIONS(2666), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -102630,59 +105935,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31566] = 18, + [31391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1008), 1, + sym_attribute_specifier, + ACTIONS(2803), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2801), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2807), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(986), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2805), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [31509] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2811), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(844), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2809), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [31572] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2817), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2815), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2813), 31, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31627] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2625), 1, + ACTIONS(2727), 1, anon_sym_EQ, - ACTIONS(2725), 1, + ACTIONS(2781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2783), 1, anon_sym_AMP_AMP, - ACTIONS(2727), 1, + ACTIONS(2785), 1, anon_sym_PIPE, - ACTIONS(2729), 1, + ACTIONS(2787), 1, anon_sym_CARET, - ACTIONS(2731), 1, + ACTIONS(2789), 1, anon_sym_AMP, - STATE(829), 1, + ACTIONS(2799), 1, + anon_sym_QMARK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2719), 2, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2733), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2735), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2737), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2739), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2721), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 18, + ACTIONS(2725), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -102693,10 +106208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31647] = 3, + [31712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 14, + ACTIONS(2617), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102711,7 +106226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2552), 29, + ACTIONS(2619), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -102741,10 +106256,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31698] = 3, + [31763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1011), 1, + sym_attribute_specifier, + ACTIONS(2822), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2820), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31818] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1037), 1, + sym_attribute_specifier, + ACTIONS(2826), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2824), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(991), 1, + sym_attribute_specifier, + ACTIONS(2830), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2828), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1031), 1, + sym_attribute_specifier, + ACTIONS(2834), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2832), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [31983] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1012), 1, + sym_attribute_specifier, + ACTIONS(2838), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2836), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [32038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 14, + ACTIONS(2609), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102759,7 +106524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2548), 29, + ACTIONS(2611), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -102789,28 +106554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_identifier, - [31749] = 9, + [32089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2721), 3, + ACTIONS(2777), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2595), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -102819,7 +106585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 23, + ACTIONS(2597), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -102843,97 +106609,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31812] = 7, + [32154] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2609), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2611), 24, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_identifier, - [31870] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 13, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2797), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2619), 22, + ACTIONS(2597), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -102945,111 +106665,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [31930] = 20, + [32221] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, - anon_sym_EQ, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2761), 1, - anon_sym_AMP_AMP, - ACTIONS(2763), 1, - anon_sym_PIPE, - ACTIONS(2765), 1, - anon_sym_CARET, - ACTIONS(2767), 1, - anon_sym_AMP, - ACTIONS(2777), 1, - anon_sym_QMARK, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2711), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [32014] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2625), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 22, + ACTIONS(2597), 21, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103061,171 +106723,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32074] = 9, + [32292] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2625), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2627), 22, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1020), 1, + sym_attribute_specifier, + ACTIONS(2842), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [32136] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2747), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - ACTIONS(2761), 1, - anon_sym_AMP_AMP, - ACTIONS(2763), 1, - anon_sym_PIPE, - ACTIONS(2765), 1, - anon_sym_CARET, - ACTIONS(2767), 1, - anon_sym_AMP, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2771), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2757), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 17, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2840), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [32216] = 17, + [32347] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2763), 1, - anon_sym_PIPE, - ACTIONS(2765), 1, - anon_sym_CARET, - ACTIONS(2767), 1, - anon_sym_AMP, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 18, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2597), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103237,55 +106832,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32294] = 16, + [32420] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2765), 1, - anon_sym_CARET, - ACTIONS(2767), 1, + ACTIONS(2789), 1, anon_sym_AMP, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2595), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 18, + ACTIONS(2597), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103297,54 +106892,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32370] = 15, + [32495] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(2787), 1, + anon_sym_CARET, + ACTIONS(2789), 1, anon_sym_AMP, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2757), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2627), 18, + ACTIONS(2597), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103356,53 +106953,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32444] = 14, + [32572] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(980), 1, + ACTIONS(2595), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + anon_sym_PIPE, + ACTIONS(2787), 1, + anon_sym_CARET, + ACTIONS(2789), 1, + anon_sym_AMP, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2627), 18, + ACTIONS(2597), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103414,52 +107015,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32516] = 13, + [32651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(980), 1, + ACTIONS(2595), 1, + anon_sym_EQ, + ACTIONS(2783), 1, + anon_sym_AMP_AMP, + ACTIONS(2785), 1, + anon_sym_PIPE, + ACTIONS(2787), 1, + anon_sym_CARET, + ACTIONS(2789), 1, + anon_sym_AMP, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2771), 2, + ACTIONS(2791), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2627), 20, + ACTIONS(2597), 18, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103471,50 +107078,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32586] = 11, + [32732] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 6, + ACTIONS(2595), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 22, + ACTIONS(2597), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103526,30 +107132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32652] = 10, + [32795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2599), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -103558,17 +107149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 22, + anon_sym_DOT, + ACTIONS(2601), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103580,124 +107176,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32716] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - ACTIONS(2759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2761), 1, - anon_sym_AMP_AMP, - ACTIONS(2763), 1, - anon_sym_PIPE, - ACTIONS(2765), 1, - anon_sym_CARET, - ACTIONS(2767), 1, - anon_sym_AMP, - ACTIONS(2777), 1, - anon_sym_QMARK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2771), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2773), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2775), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2707), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_DASH_GT, sym_identifier, - [32800] = 20, + [32846] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, - anon_sym_EQ, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, ACTIONS(2759), 1, + anon_sym_EQ, + ACTIONS(2781), 1, anon_sym_PIPE_PIPE, - ACTIONS(2761), 1, + ACTIONS(2783), 1, anon_sym_AMP_AMP, - ACTIONS(2763), 1, + ACTIONS(2785), 1, anon_sym_PIPE, - ACTIONS(2765), 1, + ACTIONS(2787), 1, anon_sym_CARET, - ACTIONS(2767), 1, + ACTIONS(2789), 1, anon_sym_AMP, - ACTIONS(2777), 1, + ACTIONS(2799), 1, anon_sym_QMARK, - STATE(980), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2755), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2777), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2769), 2, + ACTIONS(2791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2771), 2, + ACTIONS(2793), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2773), 2, + ACTIONS(2795), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2775), 2, + ACTIONS(2797), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2757), 3, + ACTIONS(2779), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2679), 15, + ACTIONS(2757), 16, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103708,13 +107245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32884] = 5, + [32931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1983), 1, + ACTIONS(2613), 1, anon_sym_EQ, - ACTIONS(1987), 10, + ACTIONS(2615), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103725,7 +107261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1971), 12, + ACTIONS(1975), 13, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103738,9 +107275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1965), 19, + ACTIONS(1969), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103748,161 +107288,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [32938] = 8, + sym_identifier, + [32986] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1007), 1, + sym_attribute_specifier, + ACTIONS(2846), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2629), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2631), 22, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2844), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [32998] = 8, + [33041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1013), 1, + sym_attribute_specifier, + ACTIONS(2850), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - STATE(980), 1, - sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2621), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2623), 22, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2848), 34, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [33096] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2854), 5, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(844), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2852), 9, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, sym_identifier, - [33058] = 8, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [33159] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2759), 1, + anon_sym_EQ, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, + anon_sym_AMP_AMP, + ACTIONS(2866), 1, + anon_sym_PIPE, + ACTIONS(2868), 1, + anon_sym_CARET, + ACTIONS(2870), 1, + anon_sym_AMP, + ACTIONS(2880), 1, anon_sym_LBRACK, - STATE(980), 1, + ACTIONS(2882), 1, + anon_sym_QMARK, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 13, + ACTIONS(2858), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2556), 22, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2757), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103914,15 +107513,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [33118] = 3, + [33243] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -103931,19 +107543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2482), 28, + ACTIONS(2597), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -103955,41 +107565,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33167] = 3, + [33305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2888), 1, + anon_sym_LPAREN2, + STATE(1017), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1980), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1967), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [33361] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2866), 1, anon_sym_PIPE, + ACTIONS(2868), 1, anon_sym_CARET, + ACTIONS(2870), 1, anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2460), 28, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104001,35 +107676,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33216] = 3, + [33439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2893), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2891), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104048,34 +107723,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33265] = 3, + [33489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2897), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2895), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104094,40 +107770,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33314] = 3, + [33539] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 13, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2522), 28, + ACTIONS(2597), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104139,41 +107828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33363] = 3, + [33611] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 13, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2452), 28, + ACTIONS(2597), 20, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104185,41 +107885,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33412] = 3, + [33681] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 13, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2428), 28, + ACTIONS(2597), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104231,15 +107940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + sym_identifier, + [33747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [33461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2512), 13, + ACTIONS(2668), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104253,19 +107970,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2514), 28, + ACTIONS(2670), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104277,20 +107992,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33510] = 3, + [33807] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 13, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2595), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -104299,19 +108024,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2486), 28, + ACTIONS(2597), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104323,127 +108046,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33657] = 3, + [33871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2901), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2899), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104462,132 +108093,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33706] = 3, + [33921] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_EQ, - ACTIONS(2444), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [33755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2866), 1, anon_sym_PIPE, + ACTIONS(2868), 1, anon_sym_CARET, + ACTIONS(2870), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2440), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [33804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2542), 28, + ACTIONS(2597), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104599,35 +108155,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [33853] = 3, + [34001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + STATE(1027), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2903), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2901), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2899), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104645,15 +108204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33902] = 3, + [34055] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 13, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2591), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104667,19 +108234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2538), 28, + ACTIONS(2593), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104691,15 +108256,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + sym_identifier, + [34115] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [33951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 13, + ACTIONS(2579), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104713,19 +108286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2456), 28, + ACTIONS(2581), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104737,42 +108308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [34000] = 3, + [34175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1984), 1, anon_sym_EQ, - ACTIONS(2464), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(1988), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104783,15 +108325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 13, + ACTIONS(1975), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104804,12 +108338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2502), 28, + ACTIONS(1969), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104817,100 +108348,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34098] = 3, + [34229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(2755), 1, anon_sym_EQ, - ACTIONS(2448), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2856), 1, anon_sym_LPAREN2, + ACTIONS(2862), 1, anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, anon_sym_AMP_AMP, + ACTIONS(2866), 1, + anon_sym_PIPE, + ACTIONS(2868), 1, + anon_sym_CARET, + ACTIONS(2870), 1, + anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + ACTIONS(2882), 1, + anon_sym_QMARK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2528), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2860), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2530), 28, + ACTIONS(2753), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -104921,41 +108421,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [34196] = 3, + [34313] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2466), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2868), 1, anon_sym_CARET, + ACTIONS(2870), 1, anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2468), 28, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -104967,35 +108481,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [34245] = 3, + [34389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2905), 1, + sym_identifier, + ACTIONS(2914), 1, + sym_primitive_type, + STATE(1036), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2912), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2908), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + ACTIONS(2910), 29, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [34447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2916), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105014,34 +108579,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34294] = 3, + [34497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(2922), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2920), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105060,34 +108626,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34343] = 3, + [34547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 1, + ACTIONS(2926), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1462), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2924), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105106,34 +108673,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34392] = 3, + [34597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(2930), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2928), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2932), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2936), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2942), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2940), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [34797] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2948), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2946), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2944), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105151,35 +108910,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34441] = 3, + [34851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 1, + ACTIONS(2952), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2950), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105198,126 +108957,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34490] = 3, + [34901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2494), 28, + ACTIONS(2956), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2496), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2498), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2954), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105336,34 +109004,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34637] = 3, + [34951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2962), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2960), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1474), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2958), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105381,61 +109053,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34686] = 3, + [35005] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2518), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2880), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [34735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2488), 13, + ACTIONS(2595), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105449,19 +109083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2490), 28, + ACTIONS(2597), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -105473,81 +109105,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [34784] = 3, + [35065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2478), 28, + ACTIONS(2966), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2809), 1, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2964), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105566,152 +109152,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34882] = 3, + [35115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2506), 28, + ACTIONS(2970), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [34931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2434), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2436), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2968), 35, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [34980] = 3, + [35165] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2432), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(2880), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [35029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 13, + ACTIONS(2656), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105725,19 +109229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2526), 28, + ACTIONS(2658), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -105749,81 +109251,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - [35078] = 3, + [35225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2510), 28, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2962), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2974), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2972), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35127] = 3, + [35279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(2978), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2976), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105842,34 +109347,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35176] = 3, + [35329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2982), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2980), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105888,34 +109394,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35225] = 3, + [35379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2962), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2986), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2984), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [35433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2988), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105934,82 +109490,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35274] = 5, + [35483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2643), 1, - anon_sym_EQ, - ACTIONS(2645), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1971), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1965), 18, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2962), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2994), 7, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2992), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - [35327] = 3, + [35537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(2998), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2996), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106028,140 +109586,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35376] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2827), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35451] = 9, + [35587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(3002), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2554), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2556), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2825), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3000), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106180,32 +109633,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35557] = 3, + [35637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(3006), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3004), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106224,32 +109680,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35604] = 3, + [35687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 1, + ACTIONS(3010), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1462), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3008), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106268,32 +109727,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35651] = 3, + [35737] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2727), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2862), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2864), 1, + anon_sym_AMP_AMP, + ACTIONS(2866), 1, + anon_sym_PIPE, + ACTIONS(2868), 1, + anon_sym_CARET, + ACTIONS(2870), 1, + anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + ACTIONS(2882), 1, + anon_sym_QMARK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2860), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2725), 15, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [35821] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2870), 1, + anon_sym_AMP, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2858), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2872), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2874), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2876), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2878), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2595), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2860), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [35895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3012), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106312,32 +109897,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35698] = 3, + [35945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(3018), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3016), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106356,32 +109944,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35745] = 3, + [35995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 1, + ACTIONS(2813), 1, + sym_primitive_type, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2817), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3023), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(3020), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106399,33 +109994,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35792] = 3, + [36051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(3028), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3026), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106444,22 +110041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35839] = 7, + [36101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(1074), 1, - sym_field_declaration_list, - STATE(1114), 1, - sym_attribute_specifier, - ACTIONS(2847), 7, + STATE(1022), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3034), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3032), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106467,15 +110060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2845), 28, + ACTIONS(3030), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -106494,12 +110090,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [35894] = 3, + [36155] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2660), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2662), 24, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_identifier, + [36213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 7, + ACTIONS(3038), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106507,12 +110153,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2654), 32, + ACTIONS(3036), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -106536,32 +110188,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35941] = 3, + [36263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(3042), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3040), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106580,32 +110235,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35988] = 3, + [36313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(3046), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(3044), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106624,16 +110282,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36035] = 3, + [36363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2450), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2452), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [36412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 38, + ACTIONS(3048), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106641,6 +110342,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -106672,12 +110375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36082] = 3, + [36461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, + ACTIONS(3054), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 38, + ACTIONS(3052), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106685,6 +110388,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -106716,12 +110421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36129] = 3, + [36510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, + ACTIONS(3058), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 38, + ACTIONS(3056), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106729,6 +110434,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -106760,23 +110467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36176] = 9, + [36559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2621), 13, + ACTIONS(2523), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106790,15 +110484,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2623), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2525), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -106810,12 +110508,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36235] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [36608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(3062), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 38, + ACTIONS(3060), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106823,6 +110526,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -106854,12 +110559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36282] = 3, + [36657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(3066), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 38, + ACTIONS(3064), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106867,6 +110572,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -106898,27 +110605,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36329] = 6, + [36706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2858), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2861), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2854), 4, + ACTIONS(2515), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2517), 28, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2856), 28, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [36755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3068), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -106945,23 +110696,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [36382] = 9, + sym_identifier, + [36804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2476), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [36853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2533), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [36902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2446), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2448), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - ACTIONS(2564), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2747), 1, + sym_identifier, + [36951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2567), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2569), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2625), 13, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2462), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106975,15 +110898,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2464), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -106995,106 +110922,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36441] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym_field_declaration_list, - STATE(1138), 1, - sym_attribute_specifier, - ACTIONS(2865), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2863), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [36496] = 21, + [37049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2713), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, + ACTIONS(2543), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(2867), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2545), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(2869), 1, anon_sym_AMP_AMP, - ACTIONS(2871), 1, - anon_sym_PIPE, - ACTIONS(2873), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2711), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -107105,23 +110968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36579] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 13, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2539), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107135,15 +110990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2619), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2541), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107155,35 +111014,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36638] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_field_declaration_list, - STATE(1123), 1, - sym_attribute_specifier, - ACTIONS(2877), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3074), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2875), 28, + ACTIONS(3072), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107202,13 +111061,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2527), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2529), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [36693] = 3, + [37245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 38, + ACTIONS(3076), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -107216,6 +111124,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -107247,87 +111157,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36740] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - anon_sym_LPAREN2, - ACTIONS(2101), 1, - anon_sym_STAR, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(2887), 1, - anon_sym_LBRACK, - STATE(1356), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1533), 1, - sym__declarator, - STATE(1671), 1, - sym__abstract_declarator, - STATE(1705), 1, - sym_parameter_list, - STATE(2088), 1, - sym_ms_based_modifier, - ACTIONS(2881), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2885), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1205), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1225), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2883), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1703), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36819] = 6, + [37294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 2, - anon_sym___attribute__, - sym_identifier, - ACTIONS(2896), 2, + ACTIONS(3082), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2899), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2892), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2894), 28, + ACTIONS(3080), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -107354,23 +111202,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - [36872] = 9, + sym_identifier, + [37343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2442), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2444), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2629), 13, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2547), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107384,15 +111266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2631), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2549), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107404,20 +111290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36931] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2609), 13, + ACTIONS(2458), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107431,15 +111312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2611), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(2460), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107453,35 +111338,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [36988] = 7, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_field_declaration_list, - STATE(1110), 1, - sym_attribute_specifier, - ACTIONS(2903), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1516), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2901), 28, + ACTIONS(1514), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107500,29 +111383,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [37043] = 3, + [37539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3086), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2905), 32, + ACTIONS(3084), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107545,12 +111433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37090] = 3, + [37588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, + ACTIONS(1480), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1474), 38, + ACTIONS(1478), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -107558,6 +111446,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -107589,12 +111479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37137] = 3, + [37637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(3090), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 38, + ACTIONS(3088), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -107602,6 +111492,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -107633,12 +111525,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37184] = 3, + [37686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 1, + ACTIONS(1472), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 38, + ACTIONS(1470), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -107646,6 +111538,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -107674,157 +111568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37231] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2681), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(2867), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2869), 1, - anon_sym_AMP_AMP, - ACTIONS(2871), 1, - anon_sym_PIPE, - ACTIONS(2873), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2679), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37314] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2709), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(2867), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2869), 1, - anon_sym_AMP_AMP, - ACTIONS(2871), 1, - anon_sym_PIPE, - ACTIONS(2873), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2707), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [37397] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [37735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -107833,15 +111588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2557), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107853,48 +111612,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37460] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2561), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107906,50 +111658,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37525] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(2573), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -107961,51 +111704,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37594] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2482), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2484), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108017,52 +111750,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37665] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2563), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_EQ, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(2565), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108074,54 +111796,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37738] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(2871), 1, - anon_sym_PIPE, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [37980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(2480), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108133,55 +111842,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37815] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2625), 1, - anon_sym_EQ, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(2869), 1, - anon_sym_AMP_AMP, - ACTIONS(2871), 1, - anon_sym_PIPE, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2827), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [38029] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2519), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2627), 14, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(2521), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108193,77 +111888,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37894] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2849), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_field_declaration_list, - STATE(1135), 1, - sym_attribute_specifier, - ACTIONS(2911), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2909), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [37949] = 10, + [38078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2829), 3, + ACTIONS(2470), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2625), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -108272,15 +111910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2627), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(2472), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -108292,152 +111934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [38010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2420), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2418), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2422), 36, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [38148] = 5, + [38127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, - anon_sym_EQ, - ACTIONS(2717), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(1971), 13, + ACTIONS(2575), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -108450,9 +111955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1965), 14, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + ACTIONS(2577), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -108461,152 +111969,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [38198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2913), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38244] = 3, + [38176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 6, + ACTIONS(2511), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2513), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1921), 32, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [38290] = 5, + [38225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1134), 1, - sym_attribute_specifier, - ACTIONS(2919), 7, + ACTIONS(2466), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2468), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2917), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [38339] = 3, + [38274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 1, + ACTIONS(3094), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1462), 36, + ACTIONS(3092), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -108638,113 +112123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38384] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2921), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2923), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(897), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38441] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2925), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2927), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1104), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [38498] = 3, + [38323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 1, + ACTIONS(1456), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2823), 36, + ACTIONS(1454), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -108776,61 +112169,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38543] = 5, + [38372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1121), 1, - sym_attribute_specifier, - ACTIONS(2931), 7, + ACTIONS(2551), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2553), 28, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2929), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [38592] = 3, + [38421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1488), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1430), 35, + ACTIONS(1486), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -108862,17 +112261,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38637] = 3, + [38470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 1, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2819), 36, + ACTIONS(1446), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -108904,77 +112307,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38682] = 3, + [38519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2815), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2454), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2456), 28, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - [38727] = 3, + [38568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, + ACTIONS(2682), 1, + anon_sym_EQ, + ACTIONS(2684), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1975), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1969), 18, + anon_sym_COMMA, aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + [38621] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3096), 1, + anon_sym_SEMI, + ACTIONS(2771), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2769), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -108983,31 +112442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2809), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109017,43 +112453,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38817] = 5, + [38683] = 8, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2937), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2935), 7, + ACTIONS(3102), 1, + anon_sym___attribute__, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(3107), 1, + anon_sym_COLON, + STATE(1040), 1, + sym_attribute_specifier, + STATE(1163), 1, + sym_enumerator_list, + ACTIONS(3100), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2933), 25, + ACTIONS(3098), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109072,37 +112502,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [38866] = 3, + [38741] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(33), 1, anon_sym___attribute__, + ACTIONS(37), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3109), 1, + anon_sym_SEMI, + ACTIONS(2771), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2769), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109111,31 +112544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109145,6 +112555,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [38803] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3111), 1, + anon_sym_SEMI, + ACTIONS(2771), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2769), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109153,31 +112596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109187,6 +112607,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [38865] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3113), 1, + anon_sym_SEMI, + ACTIONS(2771), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2769), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109195,31 +112648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109229,6 +112659,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [38927] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3115), 1, + anon_sym_SEMI, + ACTIONS(2771), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(961), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(2769), 8, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109237,31 +112700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39046] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2793), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109271,30 +112711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [39091] = 3, + [38989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(1488), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 36, + ACTIONS(1486), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109326,17 +112755,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39136] = 3, + [39036] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2595), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2597), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 36, + ACTIONS(3072), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109368,17 +112849,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39181] = 3, + [39142] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(2597), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39207] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2597), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39270] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2668), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2670), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39329] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2727), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3125), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3127), 1, + anon_sym_AMP_AMP, + ACTIONS(3129), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + ACTIONS(3141), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2725), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39412] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2755), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3125), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3127), 1, + anon_sym_AMP_AMP, + ACTIONS(3129), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + ACTIONS(3141), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2753), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [39495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1472), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1462), 35, + ACTIONS(1470), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109410,23 +113172,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39226] = 5, + [39542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(3143), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(3150), 2, anon_sym_LBRACK_LBRACK, - STATE(793), 1, - sym_string_literal, - ACTIONS(2940), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2913), 30, + anon_sym_LBRACE, + ACTIONS(3153), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3146), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3148), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -109453,18 +113219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [39275] = 3, + [39595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(3050), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1414), 35, + ACTIONS(3048), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109496,17 +113263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39320] = 3, + [39642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 2, + ACTIONS(3094), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2819), 35, + ACTIONS(3092), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109538,20 +113307,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39365] = 5, + [39689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_LBRACK, - STATE(797), 1, - sym_string_literal, - ACTIONS(2940), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2913), 30, + ACTIONS(3076), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109582,167 +113351,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39414] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2942), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2944), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [39471] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1108), 1, - sym_attribute_specifier, - ACTIONS(2948), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2946), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39520] = 5, + [39736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1124), 1, - sym_attribute_specifier, - ACTIONS(2952), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3082), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2950), 28, + ACTIONS(3080), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, anon_sym___attribute__, - STATE(1139), 1, - sym_attribute_specifier, - ACTIONS(2956), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2954), 28, - anon_sym___extension__, - anon_sym_extern, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109761,18 +113391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [39618] = 3, + [39783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 2, + ACTIONS(3054), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2823), 35, + ACTIONS(3052), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109804,61 +113439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39663] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1105), 1, - sym_attribute_specifier, - ACTIONS(2960), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2958), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39712] = 3, + [39830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 2, + ACTIONS(3086), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2783), 35, + ACTIONS(3084), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109890,17 +113483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39757] = 3, + [39877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 2, + ACTIONS(3090), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2815), 35, + ACTIONS(3088), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -109932,31 +113527,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39802] = 5, + [39924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3155), 2, anon_sym___attribute__, - STATE(1145), 1, - sym_attribute_specifier, - ACTIONS(2964), 7, + sym_identifier, + ACTIONS(3162), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3165), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3158), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2962), 28, + anon_sym_EQ, + ACTIONS(3160), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -109975,31 +113571,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - sym_identifier, - [39851] = 5, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + [39977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(3171), 1, anon_sym___attribute__, - STATE(1143), 1, + STATE(1029), 1, sym_attribute_specifier, - ACTIONS(2968), 7, + STATE(1166), 1, + sym_enumerator_list, + ACTIONS(3169), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2966), 28, + ACTIONS(3167), 29, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -110018,19 +113621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [39900] = 3, + [40032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 2, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2787), 35, + ACTIONS(1446), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110062,17 +113666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39945] = 3, + [40079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 2, + ACTIONS(3062), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2799), 35, + ACTIONS(3060), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110104,17 +113710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39990] = 3, + [40126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 2, + ACTIONS(3070), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2791), 35, + ACTIONS(3068), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110146,64 +113754,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40035] = 5, + [40173] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_LBRACK_LBRACK, - STATE(796), 1, - sym_string_literal, - ACTIONS(2940), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2913), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40084] = 5, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2597), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(1456), 1, anon_sym_LBRACK_LBRACK, - STATE(794), 1, - sym_string_literal, - ACTIONS(2940), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2913), 30, + ACTIONS(1454), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110234,35 +113853,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40133] = 3, + [40289] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2811), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2595), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3127), 1, + anon_sym_AMP_AMP, + ACTIONS(3129), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40368] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2597), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40439] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 1, + anon_sym_LPAREN2, + ACTIONS(2023), 1, + anon_sym_STAR, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1368), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1595), 1, + sym__declarator, + STATE(1743), 1, + sym__abstract_declarator, + STATE(1788), 1, + sym_parameter_list, + STATE(2409), 1, + sym_ms_based_modifier, + ACTIONS(3176), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3180), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1255), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1263), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3178), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110271,40 +114029,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40178] = 3, + [40518] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2795), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2021), 1, + anon_sym_LPAREN2, + ACTIONS(2023), 1, + anon_sym_STAR, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1368), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1588), 1, + sym__declarator, + STATE(1771), 1, + sym__abstract_declarator, + STATE(1788), 1, + sym_parameter_list, + STATE(2409), 1, + sym_ms_based_modifier, + ACTIONS(3180), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1121), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1245), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3178), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110313,22 +114089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [40223] = 3, + [40597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 1, + ACTIONS(3066), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1474), 36, + ACTIONS(3064), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110360,20 +114133,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40268] = 5, + [40644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(3058), 1, anon_sym_LBRACK_LBRACK, - STATE(798), 1, - sym_string_literal, - ACTIONS(2940), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2913), 30, + ACTIONS(3056), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -110404,17 +114177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40317] = 3, + [40691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(1480), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1496), 36, + ACTIONS(1478), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110446,17 +114221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40362] = 3, + [40738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 1, + ACTIONS(1516), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1482), 36, + ACTIONS(1514), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym___extension__, anon_sym_extern, @@ -110488,22 +114265,509 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40407] = 3, + [40785] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2579), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2581), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40844] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2759), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3125), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3127), 1, + anon_sym_AMP_AMP, + ACTIONS(3129), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + ACTIONS(3141), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2757), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40927] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2591), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2593), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [40986] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2656), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2658), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41045] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2595), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2597), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41106] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + STATE(870), 1, + sym_argument_list, + ACTIONS(2660), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2662), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [41163] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3133), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2595), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41236] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2595), 1, + anon_sym_EQ, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3129), 1, + anon_sym_PIPE, + ACTIONS(3131), 1, + anon_sym_CARET, + ACTIONS(3133), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3119), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3123), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3135), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3137), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3139), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3121), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2597), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [41388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1476), 2, + ACTIONS(2436), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1474), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2434), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -110530,22 +114794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40452] = 3, + [41434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(2440), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2438), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -110572,12 +114837,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40497] = 3, + [41480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(2761), 1, + anon_sym_EQ, + ACTIONS(2763), 10, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1975), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1969), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [41530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3070), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 36, + ACTIONS(3068), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -110614,15 +114924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40542] = 3, + [41575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 2, + ACTIONS(3078), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2807), 35, + ACTIONS(3076), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -110656,13 +114966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40587] = 3, + [41620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 2, + ACTIONS(1480), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1496), 35, + ACTIONS(1478), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -110698,13 +115008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40632] = 3, + [41665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1484), 2, + ACTIONS(1472), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1482), 35, + ACTIONS(1470), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -110740,15 +115050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40677] = 3, + [41710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 2, + ACTIONS(1472), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2803), 35, + ACTIONS(1470), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -110782,15 +115092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40722] = 3, + [41755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 2, + ACTIONS(3058), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2779), 35, + ACTIONS(3056), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -110824,31 +115134,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40767] = 5, + [41800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1140), 1, - sym_attribute_specifier, - ACTIONS(2972), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3090), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2970), 28, + anon_sym_RBRACE, + ACTIONS(3088), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110867,32 +115172,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40816] = 5, + [41845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1131), 1, - sym_attribute_specifier, - ACTIONS(2976), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3086), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2974), 28, + anon_sym_RBRACE, + ACTIONS(3084), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110911,36 +115214,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40865] = 9, + [41890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(3058), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2978), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2980), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(897), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_RBRACE, + ACTIONS(3056), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110949,8 +115255,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3060), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110960,28 +115289,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40922] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [41980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3066), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2982), 29, + ACTIONS(3064), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111000,32 +115340,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40966] = 5, + [42025] = 3, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2988), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3062), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2986), 24, + anon_sym_RBRACE, + ACTIONS(3060), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111043,32 +115381,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41014] = 5, + [42070] = 3, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2994), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3082), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2992), 24, + anon_sym_RBRACE, + ACTIONS(3080), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111086,29 +115423,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41062] = 3, + [42115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2996), 29, + STATE(826), 1, + sym_string_literal, + ACTIONS(3186), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2765), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111127,31 +115468,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41106] = 5, + [42164] = 5, ACTIONS(3), 1, sym_comment, - STATE(1111), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3004), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3002), 7, + ACTIONS(3192), 1, + anon_sym___attribute__, + STATE(1026), 1, + sym_attribute_specifier, + ACTIONS(3190), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3000), 24, + ACTIONS(3188), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -111171,28 +115516,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41154] = 3, + [42213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1448), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3006), 29, + ACTIONS(1446), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111211,32 +115554,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41198] = 5, + [42258] = 3, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3012), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1488), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3010), 24, + ACTIONS(1486), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111254,29 +115595,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41246] = 3, + [42303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1456), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3014), 29, + ACTIONS(1454), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111295,29 +115638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41290] = 3, + [42348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3018), 29, + STATE(829), 1, + sym_string_literal, + ACTIONS(3186), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2765), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111336,29 +115682,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41334] = 3, + [42397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3090), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3022), 29, + ACTIONS(3088), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111377,32 +115724,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41378] = 5, + [42442] = 3, ACTIONS(3), 1, sym_comment, - STATE(1107), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3030), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3028), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3074), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3026), 24, + ACTIONS(3072), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111420,32 +115765,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41426] = 5, + [42487] = 3, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3034), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1480), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3032), 24, + ACTIONS(1478), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111463,76 +115807,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1304), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41518] = 7, + [42532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, - sym_identifier, - ACTIONS(3045), 1, - sym_primitive_type, - STATE(1125), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3043), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3039), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1516), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3041), 23, + anon_sym_RBRACE, + ACTIONS(1514), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111550,72 +115849,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1340), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41614] = 5, + [42577] = 3, ACTIONS(3), 1, sym_comment, - STATE(1116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3051), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3049), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3094), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3047), 24, + anon_sym_RBRACE, + ACTIONS(3092), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111633,28 +115891,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41662] = 3, + [42622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 7, + ACTIONS(3199), 1, + anon_sym___attribute__, + STATE(1028), 1, + sym_attribute_specifier, + ACTIONS(3197), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3053), 29, + ACTIONS(3195), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -111673,71 +115939,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [41706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, - ACTIONS(1340), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41750] = 3, + [42671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3066), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3057), 29, + anon_sym_RBRACE, + ACTIONS(3064), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111756,29 +115978,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41794] = 3, + [42716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3061), 29, + STATE(828), 1, + sym_string_literal, + ACTIONS(3186), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2765), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111797,32 +116022,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41838] = 6, + [42765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - sym_primitive_type, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2937), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3068), 6, + ACTIONS(3206), 1, + anon_sym___attribute__, + STATE(1035), 1, + sym_attribute_specifier, + ACTIONS(3204), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3065), 24, + ACTIONS(3202), 29, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -111842,28 +116070,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41888] = 3, + [42814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3073), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3078), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3071), 29, + anon_sym_RBRACE, + ACTIONS(3076), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111882,29 +116108,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41932] = 3, + [42859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3077), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3074), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3075), 29, + anon_sym_RBRACE, + ACTIONS(3072), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -111923,111 +116150,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [41976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1360), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [42020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1386), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1388), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + [42904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 1, + anon_sym_LBRACK_LBRACK, + STATE(823), 1, + sym_string_literal, + ACTIONS(3186), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3079), 29, + ACTIONS(2765), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112046,29 +116194,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42108] = 3, + [42953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3050), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3083), 29, + ACTIONS(3048), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112087,33 +116236,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42152] = 6, + [42998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - STATE(1106), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1981), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1979), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2767), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1963), 24, + STATE(822), 1, + sym_string_literal, + ACTIONS(3186), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2765), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112131,29 +116279,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42202] = 3, + [43047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3054), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3090), 29, + ACTIONS(3052), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112172,29 +116322,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42246] = 3, + [43092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1456), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3094), 29, + anon_sym_RBRACE, + ACTIONS(1454), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112213,29 +116364,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42290] = 3, + [43137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1488), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3098), 29, + anon_sym_RBRACE, + ACTIONS(1486), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112254,29 +116406,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42334] = 3, + [43182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3070), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3102), 29, + anon_sym_RBRACE, + ACTIONS(3068), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112295,29 +116448,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42378] = 3, + [43227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3086), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3047), 29, + ACTIONS(3084), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112336,29 +116490,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42422] = 3, + [43272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1516), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3106), 29, + ACTIONS(1514), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112377,29 +116532,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42466] = 3, + [43317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3054), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3110), 29, + anon_sym_RBRACE, + ACTIONS(3052), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112418,29 +116574,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42510] = 3, + [43362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3050), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3114), 29, + anon_sym_RBRACE, + ACTIONS(3048), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112459,29 +116616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42554] = 3, + [43407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3082), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3118), 29, + ACTIONS(3080), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112500,29 +116658,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42598] = 3, + [43452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3094), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3122), 29, + ACTIONS(3092), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112541,29 +116700,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [42642] = 3, + [43497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1448), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3126), 29, + anon_sym_RBRACE, + ACTIONS(1446), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112582,93 +116742,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [43542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1418), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1420), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1416), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1328), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1300), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1300), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1340), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [42686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3132), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1380), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3130), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42730] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1418), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1420), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3134), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42774] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 17, + ACTIONS(1378), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -112686,7 +117095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1360), 19, + ACTIONS(1380), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -112706,85 +117115,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [42818] = 3, + [43938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1414), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1416), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3138), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42862] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43982] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1570), 1, + STATE(1641), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1332), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1341), 2, + STATE(1194), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2883), 3, + STATE(1369), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -112800,90 +117209,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42931] = 9, + [44051] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(3152), 1, - anon_sym_COMMA, - ACTIONS(3155), 1, - anon_sym_RPAREN, - STATE(1106), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1798), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1979), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1981), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1963), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42986] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1570), 1, + STATE(1648), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1151), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1332), 2, + STATE(1362), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -112899,44 +117262,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43055] = 16, + [44120] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1567), 1, + STATE(1633), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1315), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1341), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2883), 3, + STATE(1375), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -112952,44 +117315,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43124] = 16, + [44189] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1582), 1, + STATE(1648), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1148), 2, + STATE(1195), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1338), 2, + STATE(1362), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -113005,32 +117368,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43193] = 8, + [44258] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 1, + ACTIONS(2888), 1, anon_sym_LPAREN2, - ACTIONS(3165), 1, - anon_sym_LBRACK, - STATE(1106), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1979), 2, + ACTIONS(3219), 1, anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3158), 2, + ACTIONS(3222), 1, anon_sym_RPAREN, + STATE(1017), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1909), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1980), 2, + anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1981), 4, + ACTIONS(1982), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1963), 23, + ACTIONS(1967), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113049,77 +117414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43245] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3168), 1, - anon_sym_SEMI, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43301] = 8, + [44313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - anon_sym___attribute__, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(3179), 1, - anon_sym_COLON, - STATE(1141), 1, - sym_attribute_specifier, - STATE(1209), 1, - sym_enumerator_list, - ACTIONS(3172), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3227), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3170), 23, + ACTIONS(3225), 32, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -113138,44 +117449,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [43353] = 10, + [44356] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3181), 1, - anon_sym_SEMI, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, + ACTIONS(2888), 1, anon_sym_LPAREN2, + STATE(1017), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1980), 2, anon_sym_STAR, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_LBRACK_LBRACK, + ACTIONS(3229), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1967), 24, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113185,33 +117488,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43409] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3183), 1, - anon_sym_SEMI, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -113220,54 +117496,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43465] = 10, + sym_identifier, + [44406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3185), 1, - anon_sym_SEMI, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, + ACTIONS(3235), 1, anon_sym_LPAREN2, + ACTIONS(3239), 1, + anon_sym_LBRACK, + STATE(1017), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1980), 2, + anon_sym_COMMA, anon_sym_STAR, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + ACTIONS(3232), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1982), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1967), 23, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113277,33 +117532,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43521] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3187), 1, - anon_sym_SEMI, - ACTIONS(2942), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2944), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1051), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -113312,197 +117540,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [43577] = 7, + sym_identifier, + [44458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - STATE(1106), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1979), 2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3244), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3250), 1, + anon_sym_SLASH, + ACTIONS(3252), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3254), 1, + anon_sym_AMP_AMP, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, + anon_sym_CARET, + ACTIONS(3260), 1, + anon_sym_AMP, + ACTIONS(3270), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3248), 2, anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3189), 2, + anon_sym_PERCENT, + ACTIONS(3262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3266), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3268), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3242), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [44535] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3250), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3248), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 16, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1981), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1963), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [43627] = 17, + [44590] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(2595), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3250), 1, anon_sym_SLASH, - ACTIONS(3198), 1, + ACTIONS(3254), 1, + anon_sym_AMP_AMP, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, anon_sym_CARET, - ACTIONS(3200), 1, + ACTIONS(3260), 1, anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 9, + ACTIONS(2597), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [43696] = 21, + [44663] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2709), 1, + ACTIONS(2595), 1, aux_sym_preproc_elif_token1, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - ACTIONS(3198), 1, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, anon_sym_CARET, - ACTIONS(3200), 1, + ACTIONS(3260), 1, anon_sym_AMP, - ACTIONS(3210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3212), 1, - anon_sym_AMP_AMP, - ACTIONS(3214), 1, - anon_sym_PIPE, - ACTIONS(3216), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 6, + ACTIONS(2597), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [43773] = 10, + [44734] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - STATE(829), 1, + ACTIONS(3258), 1, + anon_sym_CARET, + ACTIONS(3260), 1, + anon_sym_AMP, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3194), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2625), 7, + ACTIONS(2595), 2, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3248), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 16, + ACTIONS(3266), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3268), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2597), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113510,45 +117799,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_QMARK, + sym_identifier, + [44803] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3250), 1, + anon_sym_SLASH, + ACTIONS(3260), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2595), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3248), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2597), 10, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [43828] = 11, + [44870] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2625), 5, + ACTIONS(3268), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2595), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 16, + ACTIONS(2597), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113561,150 +117897,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [43885] = 21, + [44929] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2681), 1, + ACTIONS(2755), 1, aux_sym_preproc_elif_token1, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - ACTIONS(3198), 1, - anon_sym_CARET, - ACTIONS(3200), 1, - anon_sym_AMP, - ACTIONS(3210), 1, + ACTIONS(3252), 1, anon_sym_PIPE_PIPE, - ACTIONS(3212), 1, + ACTIONS(3254), 1, anon_sym_AMP_AMP, - ACTIONS(3214), 1, + ACTIONS(3256), 1, anon_sym_PIPE, - ACTIONS(3216), 1, + ACTIONS(3258), 1, + anon_sym_CARET, + ACTIONS(3260), 1, + anon_sym_AMP, + ACTIONS(3270), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 6, + ACTIONS(2753), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [43962] = 12, + [45006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(2759), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3250), 1, anon_sym_SLASH, - STATE(829), 1, + ACTIONS(3252), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3254), 1, + anon_sym_AMP_AMP, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, + anon_sym_CARET, + ACTIONS(3260), 1, + anon_sym_AMP, + ACTIONS(3270), 1, + anon_sym_QMARK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3208), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2625), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3262), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 14, + ACTIONS(3266), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3268), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2757), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + sym_identifier, + [45083] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2727), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3250), 1, + anon_sym_SLASH, + ACTIONS(3252), 1, anon_sym_PIPE_PIPE, + ACTIONS(3254), 1, anon_sym_AMP_AMP, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, anon_sym_CARET, + ACTIONS(3260), 1, + anon_sym_AMP, + ACTIONS(3270), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3248), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3264), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_QMARK, + ACTIONS(3268), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2725), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - [44021] = 14, + [45160] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3204), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, + ACTIONS(2595), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2627), 12, + ACTIONS(2597), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113717,46 +118116,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK, sym_identifier, - [44084] = 15, + [45223] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3250), 1, anon_sym_SLASH, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3246), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3248), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3262), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3264), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3266), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3268), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 3, + ACTIONS(2595), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2627), 10, + ACTIONS(2597), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -113767,30 +118166,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [44149] = 7, + [45288] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(3222), 1, - anon_sym___attribute__, - STATE(1126), 1, - sym_attribute_specifier, - STATE(1203), 1, - sym_enumerator_list, - ACTIONS(3220), 6, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3250), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3246), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3248), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + sym_identifier, + [45345] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2597), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [45409] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3274), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [45463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3288), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3218), 23, + anon_sym_LBRACE, + ACTIONS(3286), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -113808,284 +118337,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44198] = 16, + [45503] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3200), 1, - anon_sym_AMP, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2625), 2, - aux_sym_preproc_elif_token1, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [45559] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3192), 2, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 10, + ACTIONS(2597), 9, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [45627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1298), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45667] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 14, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, + [45725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3296), 1, + anon_sym_typedef, + ACTIONS(2699), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44265] = 21, + [45767] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2713), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3196), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3198), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3200), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3210), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3212), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3214), 1, - anon_sym_PIPE, - ACTIONS(3216), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2711), 6, + ACTIONS(2725), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [44342] = 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [45841] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2625), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3196), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3198), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3200), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3214), 1, - anon_sym_PIPE, - STATE(829), 1, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 9, + ACTIONS(2597), 8, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [44413] = 21, + [45911] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3196), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3198), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3200), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3210), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3212), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3214), 1, - anon_sym_PIPE, - ACTIONS(3216), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3227), 1, - aux_sym_preproc_elif_token1, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3225), 6, + ACTIONS(2757), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [44490] = 19, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [45985] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2625), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3196), 1, - anon_sym_SLASH, - ACTIONS(3198), 1, - anon_sym_CARET, - ACTIONS(3200), 1, - anon_sym_AMP, - ACTIONS(3212), 1, - anon_sym_AMP_AMP, - ACTIONS(3214), 1, - anon_sym_PIPE, - STATE(829), 1, + ACTIONS(3276), 1, + anon_sym_SLASH, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3192), 2, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3194), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3204), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3206), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3208), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 8, + ACTIONS(2597), 12, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - sym_identifier, - [44563] = 3, + [46047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 2, + ACTIONS(1328), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1338), 30, + ACTIONS(1326), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114116,58 +118804,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44603] = 11, + [46087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2627), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(1416), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1414), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44659] = 3, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [46127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 2, + ACTIONS(1416), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3235), 30, + ACTIONS(1414), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114198,68 +118878,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44699] = 20, + [46167] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(2595), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 6, + ACTIONS(2597), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [44773] = 4, + anon_sym_QMARK, + [46235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3259), 1, + ACTIONS(3304), 1, anon_sym_typedef, - ACTIONS(2654), 30, + ACTIONS(2699), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114290,14 +118967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44815] = 4, + [46277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(1300), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3261), 1, - anon_sym_typedef, - ACTIONS(2654), 30, + anon_sym_LBRACE, + ACTIONS(1298), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114328,13 +119004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44857] = 3, + [46317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(3306), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1358), 30, + ACTIONS(3160), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114365,14 +119041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44897] = 4, + [46357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(3310), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3263), 1, - anon_sym_typedef, - ACTIONS(2654), 30, + anon_sym_LBRACE, + ACTIONS(3308), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114403,14 +119078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44939] = 4, + [46397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3265), 1, + ACTIONS(3312), 1, anon_sym_typedef, - ACTIONS(2654), 30, + ACTIONS(2699), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114441,13 +119116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44981] = 3, + [46439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 2, + ACTIONS(1380), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1358), 30, + ACTIONS(1378), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114478,13 +119153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45021] = 3, + [46479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1380), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1302), 30, + ACTIONS(1378), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114515,7 +119190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45061] = 3, + [46519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1340), 2, @@ -114552,121 +119227,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45101] = 20, + [46559] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(2595), 1, anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2711), 6, + ACTIONS(2597), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [45175] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2679), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [45249] = 3, + anon_sym_QMARK, + [46625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, + ACTIONS(1420), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3267), 30, + ACTIONS(1418), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114697,13 +119314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45289] = 3, + [46665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 2, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1386), 30, + ACTIONS(3314), 1, + anon_sym_typedef, + ACTIONS(2699), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114734,155 +119352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45329] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2625), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2627), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45383] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45451] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2627), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45509] = 4, + [46707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2701), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3271), 1, + ACTIONS(3316), 1, anon_sym_typedef, - ACTIONS(2654), 30, + ACTIONS(2699), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -114913,404 +119390,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45551] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45613] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45677] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2625), 1, - anon_sym_PIPE, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3247), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45743] = 18, + [46749] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45813] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2625), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [45881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3273), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2856), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45921] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - ACTIONS(3279), 1, - anon_sym_SLASH, - STATE(980), 1, - sym_argument_list, - ACTIONS(2625), 2, - anon_sym_PIPE, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3277), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 9, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [45984] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_LBRACK, - ACTIONS(3279), 1, - anon_sym_SLASH, - STATE(980), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + STATE(870), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3277), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2625), 6, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2627), 15, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - sym_identifier, - [46037] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 1, - anon_sym___attribute__, - STATE(1112), 1, - sym_attribute_specifier, - ACTIONS(3291), 6, + ACTIONS(2753), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [46823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1420), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3289), 23, + anon_sym_LBRACE, + ACTIONS(1418), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -115328,93 +119476,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [46080] = 20, + [46863] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3296), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3298), 1, - anon_sym_AMP_AMP, - ACTIONS(3300), 1, + ACTIONS(3324), 1, anon_sym_PIPE, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_QMARK, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2707), 5, + ACTIONS(2597), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [46153] = 15, + [46930] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(2021), 1, anon_sym_LPAREN2, - ACTIONS(2101), 1, + ACTIONS(2023), 1, anon_sym_STAR, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1534), 1, + STATE(1595), 1, sym__declarator, - STATE(1692), 1, + STATE(1743), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - ACTIONS(3308), 2, + ACTIONS(3176), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -115430,253 +119579,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46216] = 20, + [46993] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(2131), 1, + anon_sym_LPAREN2, + ACTIONS(2133), 1, + anon_sym_STAR, + ACTIONS(3178), 1, + sym_ms_restrict_modifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1368), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1743), 1, + sym__abstract_declarator, + STATE(1788), 1, + sym_parameter_list, + ACTIONS(3340), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3342), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1263), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1399), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3176), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3338), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47058] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3296), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3298), 1, - anon_sym_AMP_AMP, - ACTIONS(3300), 1, + ACTIONS(3324), 1, anon_sym_PIPE, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_AMP_AMP, + ACTIONS(3348), 1, anon_sym_QMARK, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3225), 5, + ACTIONS(2753), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [46289] = 20, + [47131] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(2131), 1, + anon_sym_LPAREN2, + ACTIONS(2133), 1, + anon_sym_STAR, + ACTIONS(3178), 1, + sym_ms_restrict_modifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1368), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1771), 1, + sym__abstract_declarator, + STATE(1788), 1, + sym_parameter_list, + ACTIONS(3340), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3342), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1246), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1395), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3184), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3338), 8, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47196] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3296), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3298), 1, - anon_sym_AMP_AMP, - ACTIONS(3300), 1, + ACTIONS(3324), 1, anon_sym_PIPE, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - ACTIONS(3306), 1, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_AMP_AMP, + ACTIONS(3348), 1, anon_sym_QMARK, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 5, + ACTIONS(2725), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [46362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3314), 1, - anon_sym___attribute__, - STATE(1144), 1, - sym_attribute_specifier, - ACTIONS(3312), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3310), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [46405] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 1, - anon_sym___attribute__, - STATE(1130), 1, - sym_attribute_specifier, - ACTIONS(3319), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3317), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [46448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3326), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3324), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [46487] = 11, + [47269] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3330), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 15, + ACTIONS(3334), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3336), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2597), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -115684,46 +119829,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [46542] = 12, + [47332] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 13, + ACTIONS(3334), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3336), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2597), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -115733,99 +119876,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [46599] = 20, + [47393] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3296), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3298), 1, - anon_sym_AMP_AMP, - ACTIONS(3300), 1, - anon_sym_PIPE, - ACTIONS(3302), 1, - anon_sym_CARET, - ACTIONS(3304), 1, - anon_sym_AMP, - ACTIONS(3306), 1, - anon_sym_QMARK, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2711), 5, + ACTIONS(2597), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, sym_identifier, - [46672] = 14, + [47448] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3283), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 11, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -115835,48 +119963,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [46733] = 16, + [47505] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2595), 1, anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 9, + ACTIONS(2597), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -115886,48 +120016,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [46798] = 17, + [47570] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 1, + anon_sym_LPAREN2, + ACTIONS(2023), 1, + anon_sym_STAR, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1600), 1, + sym__declarator, + STATE(1750), 1, + sym__abstract_declarator, + STATE(1788), 1, + sym_parameter_list, + STATE(2409), 1, + sym_ms_based_modifier, + ACTIONS(3350), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [47633] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2595), 1, anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - STATE(980), 1, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 8, + ACTIONS(2597), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -115936,130 +120114,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [46865] = 17, + [47700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3300), 1, + ACTIONS(3324), 1, anon_sym_PIPE, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - STATE(980), 1, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_AMP_AMP, + ACTIONS(3348), 1, + anon_sym_QMARK, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 8, + ACTIONS(2757), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [46932] = 18, + [47773] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, + ACTIONS(2880), 1, anon_sym_LBRACK, - ACTIONS(3279), 1, + ACTIONS(3322), 1, anon_sym_SLASH, - ACTIONS(3298), 1, - anon_sym_AMP_AMP, - ACTIONS(3300), 1, + ACTIONS(3324), 1, anon_sym_PIPE, - ACTIONS(3302), 1, + ACTIONS(3326), 1, anon_sym_CARET, - ACTIONS(3304), 1, + ACTIONS(3328), 1, anon_sym_AMP, - STATE(980), 1, + ACTIONS(3344), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3346), 1, + anon_sym_AMP_AMP, + ACTIONS(3348), 1, + anon_sym_QMARK, + STATE(1071), 1, sym_argument_list, - ACTIONS(2751), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2753), 2, + ACTIONS(2884), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3275), 2, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3277), 2, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3281), 2, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3283), 2, + ACTIONS(3332), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 2, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3287), 2, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2627), 7, + ACTIONS(3242), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, sym_identifier, - [47001] = 3, + [47846] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3328), 11, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + ACTIONS(3322), 1, anon_sym_SLASH, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3320), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3330), 19, + ACTIONS(2597), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -116069,75 +120261,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [47039] = 3, + anon_sym_QMARK, + sym_identifier, + [47899] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 11, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(2880), 1, + anon_sym_LBRACK, + ACTIONS(3322), 1, anon_sym_SLASH, + ACTIONS(3324), 1, anon_sym_PIPE, + ACTIONS(3326), 1, + anon_sym_CARET, + ACTIONS(3328), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3334), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3346), 1, + anon_sym_AMP_AMP, + STATE(1071), 1, + sym_argument_list, + ACTIONS(2884), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2886), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3320), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3330), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3332), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3334), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3336), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [47077] = 14, + ACTIONS(2597), 7, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + sym_identifier, + [47968] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1561), 1, + STATE(1626), 1, sym__field_declarator, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1341), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1362), 2, + STATE(1400), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1626), 5, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -116153,37 +120360,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47137] = 14, + [48028] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1534), 1, + STATE(1600), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1226), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1364), 2, + STATE(1407), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -116199,44 +120406,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47197] = 14, + [48088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3338), 1, - anon_sym_LPAREN2, - ACTIONS(3340), 1, - anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1552), 1, - sym__field_declarator, - STATE(2119), 1, - sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3369), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1221), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1358), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3366), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1626), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, + ACTIONS(3364), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3362), 16, anon_sym___extension__, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -116245,10 +120443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47257] = 3, + sym_primitive_type, + sym_identifier, + [48134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 11, + ACTIONS(3372), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -116260,7 +120460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3348), 19, + ACTIONS(3374), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -116280,42 +120480,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [47295] = 14, + [48172] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1534), 1, - sym__declarator, - STATE(2088), 1, + STATE(1615), 1, + sym__field_declarator, + STATE(2385), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1341), 2, + STATE(1263), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1364), 2, + STATE(1413), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -116326,37 +120526,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47355] = 14, + [48232] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1531), 1, + STATE(1595), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1341), 2, + STATE(1262), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1365), 2, + STATE(1406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -116372,42 +120572,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47415] = 14, + [48292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3376), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3378), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [48330] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1544), 1, - sym__field_declarator, - STATE(2119), 1, + STATE(1588), 1, + sym__declarator, + STATE(2409), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1228), 2, + STATE(1272), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1360), 2, + STATE(1411), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1626), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -116418,37 +120653,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47475] = 14, + [48390] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1552), 1, + STATE(1626), 1, sym__field_declarator, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1341), 2, + STATE(1265), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1358), 2, + STATE(1400), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1626), 5, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -116464,42 +120699,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47535] = 14, + [48450] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1368), 1, sym_ms_unaligned_ptr_modifier, - STATE(1533), 1, - sym__declarator, - STATE(2088), 1, + STATE(1610), 1, + sym__field_declarator, + STATE(2385), 1, sym_ms_based_modifier, - ACTIONS(2885), 2, + ACTIONS(3180), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1225), 2, + STATE(1261), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1357), 2, + STATE(1404), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2883), 3, + ACTIONS(3178), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -116510,10 +120745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47595] = 3, + [48510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 11, + ACTIONS(3380), 11, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -116525,7 +120760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3352), 19, + ACTIONS(3382), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -116545,1813 +120780,1152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [47633] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3356), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1878), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47708] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3358), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [47779] = 22, + [48548] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, ACTIONS(3360), 1, - anon_sym_COMMA, - ACTIONS(3362), 1, - anon_sym_RBRACE, - STATE(829), 1, - sym_argument_list, - STATE(1789), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47854] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3366), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1900), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [47929] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3368), 1, - anon_sym_COMMA, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3370), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [48002] = 22, + STATE(1368), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1595), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + ACTIONS(3180), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1263), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3178), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3384), 11, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3372), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1823), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48077] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3364), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3386), 19, anon_sym_COMMA, - ACTIONS(3374), 1, anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1901), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48152] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1833), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48227] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3364), 1, - anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_RPAREN, - STATE(829), 1, - sym_argument_list, - STATE(1797), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48302] = 22, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [48646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3380), 1, - anon_sym_COMMA, - ACTIONS(3382), 1, - anon_sym_RBRACE, - STATE(829), 1, - sym_argument_list, - STATE(1897), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48377] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3384), 1, - anon_sym_RPAREN, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48449] = 21, + ACTIONS(3390), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [48720] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3392), 1, anon_sym_COMMA, - ACTIONS(3386), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3394), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1982), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48521] = 21, + [48795] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3398), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1891), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48593] = 21, + [48870] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3400), 1, anon_sym_COMMA, - ACTIONS(3390), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3402), 1, + anon_sym_RBRACE, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1992), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48665] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(2069), 1, - sym_identifier, - STATE(1353), 1, - sym__type_specifier, - STATE(1363), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2046), 1, - sym_type_descriptor, - STATE(1324), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48721] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(3392), 1, - anon_sym_enum, - STATE(1353), 1, - sym__type_specifier, - STATE(1363), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2167), 1, - sym_type_descriptor, - STATE(1336), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48777] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(2069), 1, - sym_identifier, - STATE(1353), 1, - sym__type_specifier, - STATE(1363), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2022), 1, - sym_type_descriptor, - STATE(1324), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48833] = 15, + [48945] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2625), 2, + ACTIONS(3290), 1, anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2627), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, + ACTIONS(3302), 1, anon_sym_QMARK, - [48893] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, - anon_sym_SLASH, - STATE(829), 1, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3404), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1977), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2625), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3394), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2627), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [48955] = 21, + [49020] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3406), 1, anon_sym_COMMA, ACTIONS(3408), 1, - anon_sym_SEMI, - STATE(829), 1, + anon_sym_RBRACE, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1938), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49027] = 17, + [49095] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2625), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, - STATE(829), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3410), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(2004), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2627), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [49091] = 21, + [49170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3412), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3394), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49163] = 21, + ACTIONS(3412), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [49241] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(3422), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3414), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1886), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49235] = 21, + [49316] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3392), 1, anon_sym_COMMA, - ACTIONS(3424), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3416), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + STATE(1953), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49307] = 18, + [49391] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2589), 1, anon_sym_DASH_GT, - ACTIONS(2625), 1, - anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(3117), 1, anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3418), 1, - anon_sym_CARET, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2627), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [49373] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3416), 1, + ACTIONS(2595), 4, anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2627), 5, + ACTIONS(2597), 10, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_RBRACK, anon_sym_QMARK, - [49439] = 21, + [49447] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, ACTIONS(3426), 1, anon_sym_SEMI, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49511] = 21, + [49519] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, ACTIONS(3428), 1, anon_sym_SEMI, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49583] = 22, + [49591] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, ACTIONS(3430), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3432), 1, - anon_sym_RBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49657] = 21, + sym_identifier, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, + sym__type_specifier, + STATE(1505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1565), 1, + sym__type_definition_type, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [49647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3434), 1, + ACTIONS(3436), 1, anon_sym_RPAREN, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49729] = 21, + [49719] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3436), 1, + ACTIONS(3438), 1, anon_sym_SEMI, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49801] = 21, + [49791] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2711), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3394), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49873] = 21, + [49863] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3438), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3442), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49945] = 21, + [49935] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2589), 1, anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(3117), 1, anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2679), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(2595), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(2597), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [50017] = 19, + anon_sym_RBRACK, + anon_sym_QMARK, + [49989] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3292), 1, anon_sym_CARET, - STATE(829), 1, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2627), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [50085] = 20, + [50061] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3446), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3225), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50155] = 13, + [50133] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -118360,25 +121934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(3392), 1, + ACTIONS(3448), 1, anon_sym_enum, - STATE(1353), 1, + STATE(1398), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2258), 1, + STATE(2199), 1, sym_type_descriptor, - STATE(1336), 2, + STATE(1385), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -118394,58 +121968,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50211] = 21, + [50189] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3440), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3450), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50283] = 13, + [50261] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -118454,25 +122028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1353), 1, + ACTIONS(3448), 1, + anon_sym_enum, + STATE(1398), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2256), 1, + STATE(2381), 1, sym_type_descriptor, - STATE(1324), 2, + STATE(1385), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -118488,185 +122062,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50339] = 11, + [50317] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2564), 1, - anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, + sym__type_specifier, + STATE(1505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1566), 1, + sym__type_definition_type, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [50373] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - STATE(829), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2625), 6, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50445] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50517] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3302), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [50391] = 21, + ACTIONS(3456), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [50587] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3458), 1, + anon_sym_SEMI, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50659] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3460), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50463] = 13, + [50731] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3448), 1, - sym_primitive_type, - STATE(1394), 1, - sym__type_specifier, - STATE(1451), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1488), 1, - sym__type_definition_type, - STATE(1316), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50519] = 13, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3462), 1, + anon_sym_COLON, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50803] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3448), 1, - sym_primitive_type, - STATE(1394), 1, - sym__type_specifier, - STATE(1451), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__type_definition_type, - STATE(1316), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50575] = 13, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3464), 1, + anon_sym_COLON, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50875] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -118675,25 +122470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(3392), 1, + ACTIONS(1933), 1, anon_sym_enum, - STATE(1353), 1, + ACTIONS(2099), 1, + sym_identifier, + STATE(1398), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2252), 1, + STATE(2280), 1, sym_type_descriptor, - STATE(1336), 2, + STATE(1373), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -118709,128 +122504,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50631] = 21, + [50931] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3450), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3466), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50703] = 13, + [51003] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3448), 1, - sym_primitive_type, - STATE(1394), 1, - sym__type_specifier, - STATE(1451), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1482), 1, - sym__type_definition_type, - STATE(1316), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [50759] = 13, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_SLASH, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2597), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [51063] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(2099), 1, sym_identifier, ACTIONS(3448), 1, - sym_primitive_type, - STATE(1394), 1, + anon_sym_enum, + STATE(1398), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1485), 1, - sym__type_definition_type, - STATE(1316), 2, + STATE(2358), 1, + sym_type_descriptor, + STATE(1385), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -118846,279 +122643,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50815] = 21, + [51119] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3302), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3472), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51189] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3474), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50887] = 21, + [51261] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_SEMI, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51333] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3454), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3478), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50959] = 12, + [51405] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2589), 1, anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(3117), 1, anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, + ACTIONS(2595), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 12, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 6, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [51013] = 21, + [51467] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_RPAREN, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51085] = 20, + ACTIONS(3482), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51537] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3458), 2, + ACTIONS(3484), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [51155] = 13, + anon_sym_RBRACE, + [51607] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(3448), 1, - sym_primitive_type, - STATE(1394), 1, + STATE(1398), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, - sym__type_definition_type, - STATE(1316), 2, + STATE(2287), 1, + sym_type_descriptor, + STATE(1373), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119134,128 +123035,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51211] = 21, + [51663] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3486), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51733] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2595), 1, + anon_sym_PIPE, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 6, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [51797] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3460), 1, - anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3490), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51283] = 13, + [51869] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2564), 1, + ACTIONS(2589), 1, anon_sym_DASH_GT, - ACTIONS(2747), 1, + ACTIONS(2595), 1, + anon_sym_PIPE, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(3117), 1, anon_sym_DOT, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - STATE(829), 1, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3404), 2, + ACTIONS(3424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2625), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2627), 10, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 5, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [51935] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2597), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [52001] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2597), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [51339] = 13, + [52069] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3242), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52139] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3434), 1, sym_primitive_type, - STATE(1394), 1, + STATE(1472), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1487), 1, + STATE(1558), 1, sym__type_definition_type, - STATE(1316), 2, + STATE(1355), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119271,7 +123421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51395] = 13, + [52195] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -119280,25 +123430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(2069), 1, + ACTIONS(2099), 1, sym_identifier, - STATE(1353), 1, + STATE(1398), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2025), 1, + STATE(2378), 1, sym_type_descriptor, - STATE(1324), 2, + STATE(1373), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119314,286 +123464,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51451] = 20, + [52251] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3462), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51521] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3464), 2, + ACTIONS(3388), 1, anon_sym_COMMA, + ACTIONS(3498), 1, anon_sym_RPAREN, - [51591] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3466), 1, - anon_sym_SEMI, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51663] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51733] = 21, + [52323] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3470), 1, - anon_sym_RPAREN, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51805] = 13, + ACTIONS(3500), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [52393] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3434), 1, sym_primitive_type, - STATE(1394), 1, + STATE(1472), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1490), 1, + STATE(1557), 1, sym__type_definition_type, - STATE(1316), 2, + STATE(1355), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119609,135 +123608,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51861] = 21, + [52449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2595), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2597), 12, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + [52501] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3368), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - ACTIONS(3472), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3502), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51933] = 20, + [52573] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3504), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3474), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [52003] = 13, + [52645] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(2099), 1, sym_identifier, - ACTIONS(3448), 1, + STATE(1398), 1, + sym__type_specifier, + STATE(1403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2314), 1, + sym_type_descriptor, + STATE(1373), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1931), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52701] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, sym_primitive_type, - STATE(1394), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, + ACTIONS(2099), 1, + sym_identifier, + STATE(1398), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1491), 1, - sym__type_definition_type, - STATE(1316), 2, + STATE(2277), 1, + sym_type_descriptor, + STATE(1373), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119753,85 +123837,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52059] = 21, + [52757] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3506), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3510), 1, + anon_sym_RBRACK, + ACTIONS(3512), 1, anon_sym_QMARK, - ACTIONS(3368), 1, - anon_sym_COMMA, - ACTIONS(3476), 1, - anon_sym_RPAREN, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52131] = 13, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52831] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3434), 1, sym_primitive_type, - STATE(1394), 1, + STATE(1472), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1484), 1, + STATE(1559), 1, sym__type_definition_type, - STATE(1316), 2, + STATE(1355), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119847,84 +123932,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52187] = 20, + [52887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52959] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3514), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3478), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [52257] = 13, + [53031] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(2069), 1, + ACTIONS(3430), 1, sym_identifier, - STATE(1353), 1, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2075), 1, - sym_type_descriptor, - STATE(1324), 2, + STATE(1564), 1, + sym__type_definition_type, + STATE(1355), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -119940,84 +124077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52313] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, - anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3231), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3253), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3480), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52383] = 13, + [53087] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3434), 1, sym_primitive_type, - STATE(1394), 1, + STATE(1472), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1483), 1, + STATE(1562), 1, sym__type_definition_type, - STATE(1316), 2, + STATE(1355), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -120033,661 +124120,719 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52439] = 20, + [53143] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3516), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52508] = 20, + [53215] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3484), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52577] = 20, + [53287] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - anon_sym_RBRACK, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [52646] = 20, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, + sym__type_specifier, + STATE(1505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1561), 1, + sym__type_definition_type, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [53343] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 1, - anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, + sym__type_specifier, + STATE(1505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1560), 1, + sym__type_definition_type, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [53399] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3492), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(2753), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [52715] = 20, + [53471] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1933), 1, + anon_sym_enum, + ACTIONS(3430), 1, + sym_identifier, + ACTIONS(3434), 1, + sym_primitive_type, + STATE(1472), 1, + sym__type_specifier, + STATE(1505), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1563), 1, + sym__type_definition_type, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3432), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [53527] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, - anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3486), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - STATE(829), 1, + ACTIONS(3520), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52784] = 20, + [53599] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3488), 1, + ACTIONS(3388), 1, anon_sym_COMMA, - STATE(829), 1, + ACTIONS(3522), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52853] = 20, + [53671] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3490), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, + anon_sym_SEMI, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52922] = 20, + [53743] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3492), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3526), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52991] = 20, + [53815] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 1, - anon_sym_RBRACK, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3412), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53060] = 20, + ACTIONS(3528), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [53885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2589), 1, + anon_sym_DASH_GT, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3117), 1, + anon_sym_DOT, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, - anon_sym_QMARK, + ACTIONS(3492), 1, + anon_sym_CARET, ACTIONS(3494), 1, - anon_sym_COLON, - STATE(829), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(2725), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53129] = 20, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53957] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3496), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3388), 1, + anon_sym_COMMA, + ACTIONS(3530), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53198] = 20, + [54029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2324), 1, + anon_sym_RBRACK, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - ACTIONS(3498), 1, - anon_sym_COLON, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53267] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3142), 1, - sym_identifier, - ACTIONS(3144), 1, - anon_sym_LPAREN2, - ACTIONS(3146), 1, - anon_sym_STAR, - ACTIONS(3150), 1, - sym_primitive_type, - STATE(1579), 1, - sym__type_declarator, - STATE(2034), 1, - sym_ms_based_modifier, - STATE(1340), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3148), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1652), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [53320] = 12, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54098] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1917), 1, + ACTIONS(1933), 1, anon_sym_enum, - ACTIONS(3444), 1, + ACTIONS(3430), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3434), 1, sym_primitive_type, - STATE(1401), 1, + STATE(1453), 1, sym__type_specifier, - STATE(1451), 1, + STATE(1505), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3446), 4, + ACTIONS(3432), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -120703,380 +124848,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53373] = 20, + [54151] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 1, + ACTIONS(2366), 1, anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3492), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [53442] = 20, + [54220] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3500), 1, + ACTIONS(3532), 1, anon_sym_COLON, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53511] = 20, + [54289] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_RBRACK, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3412), 1, + ACTIONS(3298), 1, anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3534), 1, + anon_sym_COMMA, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53580] = 20, + [54358] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2362), 1, + anon_sym_RBRACK, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - ACTIONS(3502), 1, - anon_sym_COLON, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53649] = 20, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54427] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 1, + ACTIONS(2330), 1, anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3492), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [53718] = 20, + [54496] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3504), 1, - anon_sym_RPAREN, - STATE(829), 1, + ACTIONS(3536), 1, + anon_sym_COLON, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53787] = 20, + [54565] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3209), 1, + sym_identifier, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - ACTIONS(3506), 1, - anon_sym_RBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3213), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53856] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(3217), 1, sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1917), 1, - anon_sym_enum, - ACTIONS(2069), 1, - sym_identifier, - STATE(1349), 1, - sym__type_specifier, - STATE(1363), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1340), 2, + STATE(1633), 1, + sym__type_declarator, + STATE(2160), 1, + sym_ms_based_modifier, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + STATE(1728), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -121087,375 +125183,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53909] = 20, + [54618] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, + ACTIONS(2364), 1, anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3492), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [53978] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2326), 1, - anon_sym_RBRACK, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [54047] = 20, + [54687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(3540), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - ACTIONS(3508), 1, - anon_sym_RBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54116] = 20, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3538), 21, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [54722] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3510), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3542), 1, + anon_sym_RPAREN, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54185] = 20, + [54791] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, + ACTIONS(2346), 1, anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3492), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3402), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [54254] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN2, - ACTIONS(3398), 1, - anon_sym_SLASH, - ACTIONS(3410), 1, - anon_sym_AMP, - ACTIONS(3412), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, - anon_sym_AMP_AMP, - ACTIONS(3416), 1, - anon_sym_PIPE, - ACTIONS(3418), 1, - anon_sym_CARET, - ACTIONS(3420), 1, - anon_sym_QMARK, - ACTIONS(3512), 1, - anon_sym_RBRACK, - STATE(829), 1, - sym_argument_list, - ACTIONS(2562), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3396), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [54323] = 20, + [54860] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3514), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3544), 1, + anon_sym_COMMA, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54392] = 12, + [54929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3548), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3546), 21, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [54964] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1567), 1, + STATE(1648), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -121471,154 +125484,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54445] = 20, + [55017] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3516), 1, + ACTIONS(3550), 1, anon_sym_COLON, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54514] = 20, + [55086] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - ACTIONS(3518), 1, + ACTIONS(3552), 1, anon_sym_COLON, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, + ACTIONS(3284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54583] = 20, + [55155] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3554), 1, + anon_sym_RBRACK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54652] = 12, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55224] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -121627,23 +125640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2069), 1, - sym_identifier, - ACTIONS(3392), 1, + ACTIONS(1933), 1, anon_sym_enum, - STATE(1349), 1, + ACTIONS(2099), 1, + sym_identifier, + STATE(1396), 1, sym__type_specifier, - STATE(1363), 1, + STATE(1403), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1915), 4, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1137), 5, + STATE(998), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -121659,81 +125672,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54705] = 20, + [55277] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, - anon_sym_PIPE, - ACTIONS(3245), 1, - anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_COLON, - STATE(829), 1, + ACTIONS(3556), 1, + anon_sym_RBRACK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54774] = 12, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55346] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1570), 1, + STATE(1643), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -121749,69 +125762,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54827] = 20, + [55399] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(2332), 1, anon_sym_RBRACK, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2856), 1, anon_sym_LPAREN2, - ACTIONS(3398), 1, + ACTIONS(3422), 1, anon_sym_SLASH, - ACTIONS(3410), 1, + ACTIONS(3488), 1, anon_sym_AMP, - ACTIONS(3412), 1, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, anon_sym_PIPE_PIPE, - ACTIONS(3414), 1, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55468] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, anon_sym_AMP_AMP, - ACTIONS(3416), 1, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3558), 1, + anon_sym_COLON, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55537] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2328), 1, + anon_sym_RBRACK, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55606] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3418), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3420), 1, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + ACTIONS(3560), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55675] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + ACTIONS(3562), 1, + anon_sym_RBRACK, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3394), 2, + ACTIONS(3418), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3396), 2, + ACTIONS(3420), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3400), 2, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3402), 2, + ACTIONS(3470), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3404), 2, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55744] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + anon_sym_RBRACK, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2856), 1, + anon_sym_LPAREN2, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3424), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3406), 2, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55813] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(3276), 1, + anon_sym_SLASH, + ACTIONS(3290), 1, + anon_sym_PIPE, + ACTIONS(3292), 1, + anon_sym_CARET, + ACTIONS(3294), 1, + anon_sym_AMP, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, + anon_sym_QMARK, + ACTIONS(3564), 1, + anon_sym_COLON, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3272), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3274), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [54896] = 5, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55882] = 5, ACTIONS(3), 1, sym_comment, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2649), 6, + ACTIONS(2688), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3524), 9, + ACTIONS(3566), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -121821,7 +126128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2647), 10, + ACTIONS(2686), 10, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -121832,31 +126139,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [54935] = 7, + [55921] = 20, ACTIONS(3), 1, sym_comment, - STATE(1356), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3529), 2, + ACTIONS(2326), 1, + anon_sym_RBRACK, + ACTIONS(2585), 1, + anon_sym_LBRACK, + ACTIONS(2856), 1, anon_sym_LPAREN2, + ACTIONS(3422), 1, + anon_sym_SLASH, + ACTIONS(3488), 1, + anon_sym_AMP, + ACTIONS(3492), 1, + anon_sym_CARET, + ACTIONS(3494), 1, + anon_sym_PIPE, + ACTIONS(3496), 1, + anon_sym_AMP_AMP, + ACTIONS(3508), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3512), 1, + anon_sym_QMARK, + STATE(870), 1, + sym_argument_list, + ACTIONS(2587), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2589), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3418), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3420), 2, anon_sym_STAR, - ACTIONS(3534), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1341), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3531), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3527), 16, - anon_sym___extension__, - anon_sym___based, + anon_sym_PERCENT, + ACTIONS(3424), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3470), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3480), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [55990] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2099), 1, + sym_identifier, + ACTIONS(3448), 1, + anon_sym_enum, + STATE(1396), 1, + sym__type_specifier, + STATE(1403), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1931), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(998), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -121865,60 +126229,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3537), 1, - anon_sym_SEMI, - ACTIONS(2524), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2526), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [55013] = 8, + [56043] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3177), 1, + ACTIONS(3105), 1, anon_sym_LBRACE, - ACTIONS(3539), 1, - anon_sym_COLON, - STATE(1141), 1, + STATE(1029), 1, sym_attribute_specifier, - STATE(1347), 1, + STATE(1392), 1, sym_enumerator_list, - ACTIONS(3172), 5, + ACTIONS(3169), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3170), 16, + anon_sym_COLON, + ACTIONS(3167), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -121935,72 +126264,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55057] = 19, + [56085] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - ACTIONS(2560), 1, + ACTIONS(2585), 1, anon_sym_LBRACK, - ACTIONS(3233), 1, + ACTIONS(3276), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3241), 1, - anon_sym_AMP_AMP, - ACTIONS(3243), 1, + ACTIONS(3290), 1, anon_sym_PIPE, - ACTIONS(3245), 1, + ACTIONS(3292), 1, anon_sym_CARET, - ACTIONS(3247), 1, + ACTIONS(3294), 1, anon_sym_AMP, - ACTIONS(3257), 1, + ACTIONS(3298), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3300), 1, + anon_sym_AMP_AMP, + ACTIONS(3302), 1, anon_sym_QMARK, - STATE(829), 1, + STATE(870), 1, sym_argument_list, - ACTIONS(2562), 2, + ACTIONS(2587), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2564), 2, + ACTIONS(2589), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3229), 2, + ACTIONS(3272), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3231), 2, + ACTIONS(3274), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3249), 2, + ACTIONS(3278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3251), 2, + ACTIONS(3280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56151] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3569), 1, + anon_sym_SEMI, + ACTIONS(2571), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3253), 2, + ACTIONS(2573), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [55123] = 7, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [56187] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3177), 1, + ACTIONS(3105), 1, anon_sym_LBRACE, - STATE(1126), 1, + ACTIONS(3571), 1, + anon_sym_COLON, + STATE(1040), 1, sym_attribute_specifier, - STATE(1346), 1, + STATE(1391), 1, sym_enumerator_list, - ACTIONS(3220), 6, + ACTIONS(3100), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3218), 16, + ACTIONS(3098), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -122017,21 +126379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55165] = 5, + [56231] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1112), 1, + STATE(1026), 1, sym_attribute_specifier, - ACTIONS(3291), 6, + ACTIONS(3190), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3289), 16, + ACTIONS(3188), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -122048,21 +126410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55201] = 5, + [56267] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1130), 1, + STATE(1028), 1, sym_attribute_specifier, - ACTIONS(3319), 6, + ACTIONS(3197), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3317), 16, + ACTIONS(3195), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -122079,21 +126441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55237] = 5, + [56303] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1144), 1, + STATE(1035), 1, sym_attribute_specifier, - ACTIONS(3312), 6, + ACTIONS(3204), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3310), 16, + ACTIONS(3202), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -122110,61 +126472,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [55273] = 11, + [56339] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3209), 1, + sym_identifier, + ACTIONS(3211), 1, + anon_sym_LPAREN2, + ACTIONS(3213), 1, + anon_sym_STAR, + ACTIONS(3217), 1, + sym_primitive_type, + STATE(1568), 1, + sym_ms_call_modifier, + STATE(1716), 1, + sym__type_declarator, + STATE(2160), 1, + sym_ms_based_modifier, + ACTIONS(3215), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1728), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56388] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1679), 1, + STATE(1751), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1351), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3541), 3, + ACTIONS(3573), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3547), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3545), 21, + ACTIONS(3338), 8, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -122172,36 +126545,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [55351] = 11, + [56435] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1684), 1, + STATE(1743), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3549), 3, + ACTIONS(3176), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, + ACTIONS(3338), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -122210,34 +126581,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55398] = 11, + [56482] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1692), 1, + STATE(1755), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1340), 2, + STATE(1397), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3308), 3, + ACTIONS(3575), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, + ACTIONS(3338), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -122246,34 +126617,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55445] = 11, + [56529] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1691), 1, + STATE(1744), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1355), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3551), 3, + ACTIONS(3577), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, + ACTIONS(3338), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -122282,34 +126653,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55492] = 11, + [56576] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1671), 1, + STATE(1741), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1352), 2, + STATE(1394), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2881), 3, + ACTIONS(3579), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, + ACTIONS(3338), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -122318,34 +126689,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55539] = 11, + [56623] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2366), 1, + ACTIONS(2131), 1, anon_sym_LPAREN2, - ACTIONS(2368), 1, + ACTIONS(2133), 1, anon_sym_STAR, - ACTIONS(2887), 1, + ACTIONS(3182), 1, anon_sym_LBRACK, - STATE(1665), 1, + STATE(1750), 1, sym__abstract_declarator, - STATE(1705), 1, + STATE(1788), 1, sym_parameter_list, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3553), 3, + ACTIONS(3350), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1703), 4, + STATE(1786), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3543), 8, + ACTIONS(3338), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -122354,24 +126725,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55586] = 3, + [56670] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3557), 2, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3352), 1, + sym_identifier, + ACTIONS(3354), 1, anon_sym_LPAREN2, + ACTIONS(3356), 1, anon_sym_STAR, - ACTIONS(3555), 21, + STATE(1615), 1, + sym__field_declarator, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [56714] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(879), 1, + sym__old_style_function_declarator, + STATE(1601), 1, + sym_ms_call_modifier, + STATE(1646), 1, + sym__declarator, + STATE(1647), 1, + sym_function_declarator, + STATE(1752), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1927), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 1, + anon_sym_LPAREN2, + STATE(1273), 1, + sym_preproc_argument_list, + ACTIONS(3587), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3583), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56802] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 1, + sym_primitive_type, + ACTIONS(3589), 1, + sym_identifier, + STATE(1408), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3591), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2908), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2910), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -122380,27 +126858,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + [56840] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3352), 1, + sym_identifier, + ACTIONS(3354), 1, + anon_sym_LPAREN2, + ACTIONS(3356), 1, + anon_sym_STAR, + STATE(1626), 1, + sym__field_declarator, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [56884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, sym_identifier, - [55617] = 10, + STATE(852), 1, + sym__old_style_function_declarator, + STATE(1591), 1, + sym_ms_call_modifier, + STATE(1632), 1, + sym__declarator, + STATE(1647), 1, + sym_function_declarator, + STATE(1745), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1900), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [56938] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1534), 1, + STATE(1600), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -122416,30 +126965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55661] = 10, + [56982] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1561), 1, - sym__field_declarator, - STATE(2119), 1, + STATE(1586), 1, + sym__declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1626), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -122450,27 +126999,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55705] = 6, + [57026] = 6, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, + STATE(962), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2933), 2, + ACTIONS(2813), 2, sym_primitive_type, sym_identifier, - ACTIONS(2937), 4, + ACTIONS(2817), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3068), 6, + ACTIONS(3023), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3065), 9, + ACTIONS(3020), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -122480,30 +127029,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55741] = 10, + [57062] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, sym_identifier, - ACTIONS(3338), 1, + STATE(871), 1, + sym__old_style_function_declarator, + STATE(1604), 1, + sym_ms_call_modifier, + STATE(1640), 1, + sym__declarator, + STATE(1647), 1, + sym_function_declarator, + STATE(1740), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1949), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57116] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1552), 1, - sym__field_declarator, - STATE(2119), 1, + ACTIONS(3581), 1, + sym_identifier, + STATE(885), 1, + sym__old_style_function_declarator, + STATE(1599), 1, + sym_ms_call_modifier, + STATE(1634), 1, + sym__declarator, + STATE(1647), 1, + sym_function_declarator, + STATE(1747), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2002), 1, + sym_init_declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57170] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1595), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1626), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -122514,54 +127141,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55785] = 5, + [57214] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, anon_sym_LPAREN2, - STATE(1220), 1, - sym_preproc_argument_list, - ACTIONS(3563), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3559), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3360), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55819] = 10, + ACTIONS(3581), 1, + sym_identifier, + STATE(849), 1, + sym__old_style_function_declarator, + STATE(1584), 1, + sym_ms_call_modifier, + STATE(1639), 1, + sym__declarator, + STATE(1647), 1, + sym_function_declarator, + STATE(1782), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1964), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57268] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1549), 1, + STATE(1608), 1, sym__field_declarator, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - STATE(1340), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1626), 5, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -122577,131 +127214,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55863] = 7, + [57312] = 5, + ACTIONS(3583), 1, + anon_sym_LF, + ACTIONS(3593), 1, + anon_sym_LPAREN2, + ACTIONS(3595), 1, + sym_comment, + STATE(1509), 1, + sym_preproc_argument_list, + ACTIONS(3587), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57345] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 1, - sym_primitive_type, - ACTIONS(3565), 1, - sym_identifier, - STATE(1359), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3567), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3039), 6, + ACTIONS(3597), 1, anon_sym_COMMA, + ACTIONS(3599), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3607), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3609), 1, + anon_sym_AMP_AMP, + ACTIONS(3611), 1, + anon_sym_PIPE, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_AMP, + STATE(2003), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3041), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55901] = 10, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57400] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1531), 1, + ACTIONS(3581), 1, + sym_identifier, + STATE(1603), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, sym__declarator, - STATE(2088), 1, + STATE(1782), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1964), 1, + sym_init_declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1340), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1575), 5, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55945] = 10, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57451] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1528), 1, + ACTIONS(3581), 1, + sym_identifier, + STATE(1599), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1663), 1, sym__declarator, - STATE(2088), 1, + STATE(1747), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2002), 1, + sym_init_declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1340), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1575), 5, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55989] = 10, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57502] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3571), 1, + ACTIONS(3627), 1, anon_sym_RPAREN, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3581), 1, + ACTIONS(3637), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1369), 7, + STATE(1415), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122709,210 +127388,550 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56032] = 16, + [57545] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, - anon_sym_COMMA, - ACTIONS(3587), 1, + ACTIONS(3625), 1, + sym_identifier, + ACTIONS(3629), 1, + anon_sym_LPAREN2, + ACTIONS(3631), 1, + anon_sym_defined, + ACTIONS(3641), 1, anon_sym_RPAREN, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3595), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, - anon_sym_AMP_AMP, - ACTIONS(3599), 1, - anon_sym_PIPE, - ACTIONS(3601), 1, - anon_sym_CARET, - ACTIONS(3603), 1, - anon_sym_AMP, - STATE(1821), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3589), 2, + ACTIONS(3643), 1, + sym_number_literal, + ACTIONS(3633), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, + ACTIONS(3639), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1424), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [57588] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56087] = 16, + ACTIONS(3581), 1, + sym_identifier, + STATE(1597), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1767), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1959), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57639] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1585), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1745), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1900), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57690] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1592), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1752), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1927), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57741] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1584), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1654), 1, + sym__declarator, + STATE(1782), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1964), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57792] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, anon_sym_COMMA, - ACTIONS(3593), 1, + ACTIONS(3605), 1, anon_sym_SLASH, - ACTIONS(3595), 1, + ACTIONS(3607), 1, anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, + ACTIONS(3609), 1, anon_sym_AMP_AMP, - ACTIONS(3599), 1, + ACTIONS(3611), 1, anon_sym_PIPE, - ACTIONS(3601), 1, + ACTIONS(3613), 1, anon_sym_CARET, - ACTIONS(3603), 1, + ACTIONS(3615), 1, anon_sym_AMP, - ACTIONS(3613), 1, + ACTIONS(3645), 1, anon_sym_RPAREN, - STATE(1841), 1, + STATE(1926), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3589), 2, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, + ACTIONS(3603), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3605), 2, + ACTIONS(3617), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, + ACTIONS(3619), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3609), 2, + ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, + ACTIONS(3623), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56142] = 16, + [57847] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1596), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1772), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1993), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57898] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1583), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1740), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1949), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [57949] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, anon_sym_COMMA, - ACTIONS(3593), 1, + ACTIONS(3605), 1, anon_sym_SLASH, - ACTIONS(3595), 1, + ACTIONS(3607), 1, anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, + ACTIONS(3609), 1, anon_sym_AMP_AMP, - ACTIONS(3599), 1, + ACTIONS(3611), 1, anon_sym_PIPE, - ACTIONS(3601), 1, + ACTIONS(3613), 1, anon_sym_CARET, - ACTIONS(3603), 1, - anon_sym_AMP, ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3647), 1, anon_sym_RPAREN, - STATE(1905), 1, + STATE(1978), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3589), 2, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, + ACTIONS(3603), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3605), 2, + ACTIONS(3617), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, + ACTIONS(3619), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3609), 2, + ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, + ACTIONS(3623), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56197] = 5, - ACTIONS(3559), 1, - anon_sym_LF, - ACTIONS(3617), 1, + [58004] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3619), 1, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1582), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1787), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2050), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58055] = 14, + ACTIONS(3), 1, sym_comment, - STATE(1460), 1, - sym_preproc_argument_list, - ACTIONS(3563), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [56230] = 10, + ACTIONS(3581), 1, + sym_identifier, + STATE(1598), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1723), 1, + sym__declarator, + STATE(1747), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2002), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58106] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, sym_identifier, - ACTIONS(3573), 1, + STATE(1604), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1669), 1, + sym__declarator, + STATE(1740), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1949), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58157] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3621), 1, - anon_sym_RPAREN, - ACTIONS(3623), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1368), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [56273] = 10, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1601), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1664), 1, + sym__declarator, + STATE(1752), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1927), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58208] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1591), 1, + sym_ms_call_modifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1667), 1, + sym__declarator, + STATE(1745), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(1900), 1, + sym_init_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [58259] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3625), 1, + ACTIONS(3649), 1, anon_sym_RPAREN, - ACTIONS(3627), 1, + ACTIONS(3651), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1367), 7, + STATE(1427), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122920,30 +127939,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56316] = 9, + [58302] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3629), 1, + ACTIONS(3663), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1396), 7, + STATE(1526), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122951,30 +127970,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56356] = 9, + [58342] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3667), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [58386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3641), 1, + ACTIONS(3671), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1480), 7, + STATE(1501), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -122982,57 +128034,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3647), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1340), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3645), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [56428] = 9, + [58426] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3649), 1, + ACTIONS(3673), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1430), 7, + STATE(1544), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123040,30 +128065,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56468] = 9, + [58466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3651), 1, + ACTIONS(3675), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1447), 7, + STATE(1503), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123071,30 +128096,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56508] = 9, + [58506] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3653), 1, + ACTIONS(3677), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1408), 7, + STATE(1500), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123102,30 +128127,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56548] = 9, + [58546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3655), 1, + ACTIONS(3679), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1479), 7, + STATE(1533), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123133,30 +128158,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56588] = 9, + [58586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, - anon_sym_defined, ACTIONS(3657), 1, + anon_sym_defined, + ACTIONS(3681), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1445), 7, + STATE(1542), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123164,30 +128189,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56628] = 9, + [58626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3659), 1, + ACTIONS(3683), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1440), 7, + STATE(1539), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123195,30 +128220,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56668] = 9, + [58666] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(2021), 1, + anon_sym_LPAREN2, + ACTIONS(2023), 1, + anon_sym_STAR, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1700), 1, + sym__declarator, + STATE(1788), 1, + sym_parameter_list, + STATE(1800), 1, + sym__abstract_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + ACTIONS(3685), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [58714] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3661), 1, + ACTIONS(3687), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1472), 7, + STATE(1519), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123226,30 +128286,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56708] = 9, + [58754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3691), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1383), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3689), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [58786] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3663), 1, + ACTIONS(3693), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1403), 7, + STATE(1475), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123257,30 +128344,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56748] = 9, + [58826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3665), 1, + ACTIONS(3695), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1443), 7, + STATE(1513), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123288,30 +128375,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56788] = 9, + [58866] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3667), 1, + ACTIONS(3697), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1441), 7, + STATE(1499), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123319,30 +128406,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56828] = 9, + [58906] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3669), 1, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1444), 7, + STATE(1545), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123350,30 +128437,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56868] = 9, + [58946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3703), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3701), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58974] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3671), 1, + ACTIONS(3705), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1474), 7, + STATE(1547), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123381,30 +128493,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56908] = 9, + [59014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3673), 1, + ACTIONS(3707), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1459), 7, + STATE(1534), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123412,65 +128524,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56948] = 13, + [59054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2099), 1, + ACTIONS(3711), 2, anon_sym_LPAREN2, - ACTIONS(2101), 1, anon_sym_STAR, - ACTIONS(2103), 1, + STATE(1445), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3709), 7, anon_sym___based, - ACTIONS(2879), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(2887), 1, - anon_sym_LBRACK, - STATE(1622), 1, - sym__declarator, - STATE(1704), 1, - sym__abstract_declarator, - STATE(1705), 1, - sym_parameter_list, - STATE(2088), 1, - sym_ms_based_modifier, - ACTIONS(3675), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1703), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [56996] = 9, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [59086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3677), 1, + ACTIONS(3713), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1448), 7, + STATE(1496), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123478,61 +128582,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57036] = 9, + [59126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, - anon_sym_defined, - ACTIONS(3679), 1, - sym_number_literal, - ACTIONS(3637), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3639), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1450), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57076] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - anon_sym_LPAREN2, - ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3681), 1, + ACTIONS(3715), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1453), 7, + STATE(1473), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123540,30 +128613,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57116] = 9, + [59166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3683), 1, + ACTIONS(3717), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1426), 7, + STATE(1521), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123571,16 +128644,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57156] = 5, + [59206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3687), 2, + ACTIONS(3721), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1375), 2, + STATE(1383), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3685), 7, + ACTIONS(3719), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -123598,30 +128671,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57188] = 9, + [59238] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3689), 1, + ACTIONS(3723), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1424), 7, + STATE(1525), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123629,30 +128702,54 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57228] = 9, + [59278] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3653), 1, + sym_identifier, + ACTIONS(3655), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_defined, + ACTIONS(3725), 1, + sym_number_literal, + ACTIONS(3659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3661), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3665), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1520), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [59318] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, anon_sym_SLASH, - ACTIONS(3589), 2, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, + ACTIONS(3603), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3693), 2, + ACTIONS(3669), 4, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3691), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -123660,26 +128757,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [57268] = 7, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3605), 1, anon_sym_SLASH, - ACTIONS(3589), 2, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, + ACTIONS(3603), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3611), 2, + ACTIONS(3623), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3693), 4, + ACTIONS(3669), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3691), 9, + ACTIONS(3667), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -123689,16 +128790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [57304] = 3, + [59388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 5, + ACTIONS(2575), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3695), 15, + ACTIONS(2577), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -123714,61 +128815,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57332] = 9, + [59416] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - anon_sym_LPAREN2, - ACTIONS(3635), 1, - anon_sym_defined, - ACTIONS(3699), 1, - sym_number_literal, - ACTIONS(3637), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1477), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57372] = 9, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3669), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3667), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [59456] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3669), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3667), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [59498] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3701), 1, + ACTIONS(3727), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1478), 7, + STATE(1435), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -123776,113 +128909,196 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57412] = 5, + [59538] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3705), 2, - anon_sym_LPAREN2, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3669), 1, + anon_sym_PIPE, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, anon_sym_STAR, - STATE(1404), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3703), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [57444] = 14, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3667), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [59584] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3611), 1, + anon_sym_PIPE, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3667), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [59630] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3609), 1, + anon_sym_AMP_AMP, + ACTIONS(3611), 1, + anon_sym_PIPE, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3667), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [59678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3669), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59706] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, anon_sym_SLASH, - ACTIONS(3595), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, - anon_sym_AMP_AMP, - ACTIONS(3599), 1, + ACTIONS(3603), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3669), 4, anon_sym_PIPE, - ACTIONS(3601), 1, - anon_sym_CARET, - ACTIONS(3603), 1, anon_sym_AMP, - ACTIONS(3589), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3667), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3707), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [57494] = 12, + [59738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3731), 5, anon_sym_SLASH, - ACTIONS(3601), 1, - anon_sym_CARET, - ACTIONS(3603), 1, - anon_sym_AMP, - ACTIONS(3693), 1, anon_sym_PIPE, - ACTIONS(3589), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3729), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3605), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3691), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57540] = 5, + [59766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3711), 2, + ACTIONS(3735), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1340), 2, + STATE(1457), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3709), 7, + ACTIONS(3733), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -123900,128 +129116,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [57572] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3713), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1432), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57612] = 3, + [59798] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3717), 5, + ACTIONS(3605), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3715), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(3607), 1, anon_sym_PIPE_PIPE, + ACTIONS(3609), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57640] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - anon_sym_LPAREN2, - ACTIONS(3635), 1, - anon_sym_defined, - ACTIONS(3719), 1, - sym_number_literal, - ACTIONS(3637), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3639), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1468), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [57680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3723), 5, - anon_sym_SLASH, + ACTIONS(3611), 1, anon_sym_PIPE, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3721), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3603), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3617), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3619), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3623), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [57708] = 3, + ACTIONS(3737), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [59848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 5, + ACTIONS(3741), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3725), 15, + ACTIONS(3739), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -124037,24 +129177,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57736] = 5, + [59876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3745), 5, anon_sym_SLASH, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3693), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3691), 13, + ACTIONS(3743), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -124064,24 +129202,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57768] = 9, + [59904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3729), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -124095,30 +129233,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57808] = 9, + [59944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3731), 1, + ACTIONS(3749), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1439), 7, + STATE(1506), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124126,90 +129264,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3691), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [57876] = 13, + [59984] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3597), 1, - anon_sym_AMP_AMP, - ACTIONS(3599), 1, - anon_sym_PIPE, - ACTIONS(3601), 1, - anon_sym_CARET, - ACTIONS(3603), 1, - anon_sym_AMP, - ACTIONS(3589), 2, + ACTIONS(3625), 1, + sym_identifier, + ACTIONS(3629), 1, + anon_sym_LPAREN2, + ACTIONS(3631), 1, + anon_sym_defined, + ACTIONS(3751), 1, + sym_number_literal, + ACTIONS(3633), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3691), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [57924] = 9, + ACTIONS(3639), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1469), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [60024] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3733), 1, + ACTIONS(3753), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1458), 7, + STATE(1468), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124217,30 +129326,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57964] = 9, + [60064] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3735), 1, + ACTIONS(3755), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1471), 7, + STATE(1538), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124248,30 +129357,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58004] = 9, + [60104] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3737), 1, + ACTIONS(3757), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1410), 7, + STATE(1527), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124279,30 +129388,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58044] = 9, + [60144] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3739), 1, + ACTIONS(3759), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1481), 7, + STATE(1528), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124310,30 +129419,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58084] = 9, + [60184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3741), 1, + ACTIONS(3761), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1455), 7, + STATE(1529), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124341,30 +129450,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58124] = 9, + [60224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3743), 1, + ACTIONS(3763), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1446), 7, + STATE(1530), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124372,30 +129481,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58164] = 9, + [60264] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3745), 1, + ACTIONS(3765), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1413), 7, + STATE(1532), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124403,30 +129512,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58204] = 9, + [60304] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3653), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3655), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3657), 1, anon_sym_defined, - ACTIONS(3747), 1, + ACTIONS(3767), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3659), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3665), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1436), 7, + STATE(1535), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124434,30 +129543,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58244] = 9, + [60344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3749), 1, + ACTIONS(3769), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1397), 7, + STATE(1467), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124465,58 +129574,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58284] = 6, + [60384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3589), 2, + ACTIONS(3653), 1, + sym_identifier, + ACTIONS(3655), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_defined, + ACTIONS(3771), 1, + sym_number_literal, + ACTIONS(3659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3693), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3691), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58318] = 9, + ACTIONS(3665), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1536), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [60424] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3751), 1, + ACTIONS(3773), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1402), 7, + STATE(1522), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124524,88 +129636,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58358] = 11, + [60464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3603), 1, - anon_sym_AMP, - ACTIONS(3693), 1, - anon_sym_PIPE, - ACTIONS(3589), 2, + ACTIONS(3625), 1, + sym_identifier, + ACTIONS(3629), 1, + anon_sym_LPAREN2, + ACTIONS(3631), 1, + anon_sym_defined, + ACTIONS(3775), 1, + sym_number_literal, + ACTIONS(3633), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3691), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [58402] = 3, + ACTIONS(3639), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1466), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [60504] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2530), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3653), 1, + sym_identifier, + ACTIONS(3655), 1, + anon_sym_LPAREN2, + ACTIONS(3657), 1, + anon_sym_defined, + ACTIONS(3777), 1, + sym_number_literal, + ACTIONS(3659), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3661), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58430] = 9, + ACTIONS(3665), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1537), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [60544] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3753), 1, + ACTIONS(3779), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1438), 7, + STATE(1460), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124613,30 +129729,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58470] = 9, + [60584] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3755), 1, + ACTIONS(3781), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1465), 7, + STATE(1461), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -124644,56 +129760,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58510] = 10, + [60624] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3589), 2, + ACTIONS(3625), 1, + sym_identifier, + ACTIONS(3629), 1, + anon_sym_LPAREN2, + ACTIONS(3631), 1, + anon_sym_defined, + ACTIONS(3783), 1, + sym_number_literal, + ACTIONS(3633), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3693), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3691), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [58552] = 9, + ACTIONS(3639), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1463), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [60664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3633), 1, + ACTIONS(3629), 1, anon_sym_LPAREN2, - ACTIONS(3635), 1, + ACTIONS(3631), 1, anon_sym_defined, - ACTIONS(3757), 1, + ACTIONS(3785), 1, sym_number_literal, - ACTIONS(3637), 2, + ACTIONS(3633), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3639), 2, + ACTIONS(3635), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 5, + ACTIONS(3639), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -124707,169 +129822,202 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58592] = 12, - ACTIONS(3), 1, + [60704] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3787), 1, + anon_sym_LF, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_AMP_AMP, + ACTIONS(3797), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_CARET, + ACTIONS(3801), 1, + anon_sym_AMP, + ACTIONS(3789), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3599), 1, + anon_sym_PERCENT, + ACTIONS(3805), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60749] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(874), 1, + sym__old_style_function_declarator, + STATE(1621), 1, + sym_ms_call_modifier, + STATE(1658), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [60792] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3023), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3020), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [60823] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_AMP_AMP, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3601), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3603), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3589), 2, + ACTIONS(3813), 1, + anon_sym_LF, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3805), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3691), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT, + [60868] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - [58638] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3759), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1414), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [58678] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3631), 1, - sym_identifier, - ACTIONS(3633), 1, - anon_sym_LPAREN2, - ACTIONS(3635), 1, - anon_sym_defined, - ACTIONS(3761), 1, - sym_number_literal, - ACTIONS(3637), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3639), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1435), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [58718] = 7, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(3691), 1, + ACTIONS(3797), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, + anon_sym_CARET, + ACTIONS(3801), 1, + anon_sym_AMP, + ACTIONS(3815), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, + ACTIONS(3803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3693), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [58753] = 12, - ACTIONS(3619), 1, + [60913] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3771), 1, - anon_sym_LF, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3763), 2, + ACTIONS(3817), 1, + anon_sym_LF, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58798] = 3, - ACTIONS(3348), 1, + [60958] = 3, + ACTIONS(2577), 1, anon_sym_LF, - ACTIONS(3619), 1, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3346), 18, + ACTIONS(2575), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -124888,80 +130036,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58825] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, + [60985] = 12, ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3599), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3601), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3603), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3785), 1, - anon_sym_RPAREN, - ACTIONS(3589), 2, + ACTIONS(3819), 1, + anon_sym_LF, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3607), 2, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3805), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58874] = 12, - ACTIONS(3619), 1, + anon_sym_LT, + [61030] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + STATE(1518), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2901), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3821), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2899), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61061] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 1, + sym_identifier, + ACTIONS(3830), 1, + sym_primitive_type, + STATE(1498), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2908), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3827), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2910), 10, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [61096] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3787), 1, + ACTIONS(3833), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58919] = 3, - ACTIONS(3619), 1, + [61141] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2986), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3835), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2984), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61172] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 1, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2974), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3838), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2972), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61203] = 3, + ACTIONS(3386), 1, anon_sym_LF, - ACTIONS(3693), 18, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3384), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -124980,45 +130232,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58946] = 12, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(3691), 1, + [61230] = 3, + ACTIONS(3382), 1, anon_sym_LF, - ACTIONS(3693), 1, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3380), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3763), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58991] = 3, - ACTIONS(3352), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61257] = 3, + ACTIONS(3378), 1, anon_sym_LF, - ACTIONS(3619), 1, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3350), 18, + ACTIONS(3376), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125037,83 +130280,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59018] = 12, - ACTIONS(3619), 1, + [61284] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(855), 1, + sym__old_style_function_declarator, + STATE(1609), 1, + sym_ms_call_modifier, + STATE(1650), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [61327] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3789), 1, + ACTIONS(3841), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3767), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59063] = 11, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(3691), 1, - anon_sym_LF, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_CARET, - ACTIONS(3781), 1, - anon_sym_AMP, - ACTIONS(3693), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3763), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59106] = 4, - ACTIONS(3619), 1, + [61372] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1508), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3032), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3843), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3030), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61403] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1507), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2946), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3846), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2944), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61434] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3701), 1, anon_sym_LF, - ACTIONS(3765), 3, + ACTIONS(3703), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3693), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -125127,109 +130421,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59135] = 12, - ACTIONS(3619), 1, + [61461] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(1980), 1, + anon_sym_STAR, + ACTIONS(2888), 1, + anon_sym_LPAREN2, + STATE(1540), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3849), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1967), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61494] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(962), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3852), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2992), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [61525] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3791), 1, + ACTIONS(3855), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59180] = 12, - ACTIONS(3619), 1, + [61570] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3793), 1, + ACTIONS(3857), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59225] = 10, - ACTIONS(3619), 1, + [61615] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_LF, - ACTIONS(3779), 1, + ACTIONS(3793), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3795), 1, + anon_sym_AMP_AMP, + ACTIONS(3797), 1, + anon_sym_PIPE, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3763), 2, + ACTIONS(3859), 1, + anon_sym_LF, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3693), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3805), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [61660] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3607), 1, anon_sym_PIPE_PIPE, + ACTIONS(3609), 1, anon_sym_AMP_AMP, + ACTIONS(3611), 1, anon_sym_PIPE, - ACTIONS(3765), 3, + ACTIONS(3613), 1, + anon_sym_CARET, + ACTIONS(3615), 1, + anon_sym_AMP, + ACTIONS(3861), 1, + anon_sym_RPAREN, + ACTIONS(3601), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3603), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [59266] = 3, - ACTIONS(3619), 1, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61709] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(875), 1, + sym__old_style_function_declarator, + STATE(1607), 1, + sym_ms_call_modifier, + STATE(1652), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [61752] = 3, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3729), 1, anon_sym_LF, - ACTIONS(3717), 18, + ACTIONS(3731), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125248,70 +130664,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59293] = 9, - ACTIONS(3619), 1, + [61779] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3781), 1, - anon_sym_AMP, - ACTIONS(3763), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3693), 4, + ACTIONS(3669), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3767), 4, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59332] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - sym_identifier, - ACTIONS(3801), 1, - sym_primitive_type, - STATE(1473), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3039), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3798), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3041), 10, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [59367] = 3, - ACTIONS(3619), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61808] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3725), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3727), 18, + ACTIONS(3669), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125330,98 +130713,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59394] = 12, - ACTIONS(3619), 1, + [61835] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3667), 1, + anon_sym_LF, + ACTIONS(3669), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3804), 1, - anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59439] = 3, - ACTIONS(2530), 1, - anon_sym_LF, - ACTIONS(3619), 1, + [61880] = 11, + ACTIONS(3595), 1, sym_comment, - ACTIONS(2528), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(3667), 1, + anon_sym_LF, + ACTIONS(3797), 1, anon_sym_PIPE, + ACTIONS(3799), 1, anon_sym_CARET, + ACTIONS(3801), 1, anon_sym_AMP, + ACTIONS(3669), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3789), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59466] = 8, - ACTIONS(3619), 1, + [61923] = 10, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3799), 1, + anon_sym_CARET, + ACTIONS(3801), 1, + anon_sym_AMP, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3669), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3693), 5, + [61964] = 9, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3667), 1, + anon_sym_LF, + ACTIONS(3801), 1, + anon_sym_AMP, + ACTIONS(3789), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3669), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - [59503] = 3, - ACTIONS(3330), 1, + ACTIONS(3805), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [62003] = 3, + ACTIONS(3374), 1, anon_sym_LF, - ACTIONS(3619), 1, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3328), 18, + ACTIONS(3372), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -125440,107 +130863,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59530] = 3, - ACTIONS(3619), 1, + [62030] = 8, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3697), 18, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3805), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3669), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59557] = 12, - ACTIONS(3619), 1, + [62067] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3806), 1, + ACTIONS(3863), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59602] = 12, - ACTIONS(3619), 1, + [62112] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3808), 1, + ACTIONS(3865), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59647] = 3, - ACTIONS(3334), 1, - anon_sym_LF, - ACTIONS(3619), 1, + [62157] = 7, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3332), 18, + ACTIONS(3667), 1, + anon_sym_LF, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3805), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3669), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -125548,107 +130986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59674] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2994), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3810), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2992), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59705] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 1, - anon_sym_STAR, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - STATE(1469), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3813), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1963), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59738] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1461), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3028), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3026), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59769] = 6, - ACTIONS(3619), 1, + [62192] = 6, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3693), 11, + ACTIONS(3669), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -125660,19 +131013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59802] = 5, - ACTIONS(3619), 1, + [62225] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3691), 1, + ACTIONS(3667), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3693), 13, + ACTIONS(3669), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -125686,232 +131039,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59833] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1475), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3002), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3819), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3000), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59864] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3034), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3822), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3032), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59895] = 12, - ACTIONS(3619), 1, + [62256] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3825), 1, + ACTIONS(3867), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3767), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59940] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2988), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3827), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2986), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59971] = 12, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(3773), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, - anon_sym_AMP_AMP, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_CARET, - ACTIONS(3781), 1, - anon_sym_AMP, - ACTIONS(3830), 1, - anon_sym_LF, - ACTIONS(3763), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, + ACTIONS(3807), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60016] = 12, - ACTIONS(3619), 1, + [62301] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3832), 1, + ACTIONS(3869), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60061] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3593), 1, - anon_sym_SLASH, - ACTIONS(3595), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3597), 1, - anon_sym_AMP_AMP, - ACTIONS(3599), 1, - anon_sym_PIPE, - ACTIONS(3601), 1, - anon_sym_CARET, - ACTIONS(3603), 1, - anon_sym_AMP, - ACTIONS(3834), 1, - anon_sym_RPAREN, - ACTIONS(3589), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3591), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3605), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3607), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3609), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3611), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [60110] = 5, + [62346] = 5, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, + STATE(962), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3068), 2, + ACTIONS(2960), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3836), 4, + ACTIONS(3871), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3065), 12, + ACTIONS(2958), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -125924,229 +131131,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [60141] = 12, - ACTIONS(3619), 1, + [62377] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(880), 1, + sym__old_style_function_declarator, + STATE(1620), 1, + sym_ms_call_modifier, + STATE(1666), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62420] = 12, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3840), 1, + ACTIONS(3874), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60186] = 5, + [62465] = 11, ACTIONS(3), 1, sym_comment, - STATE(1060), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3012), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3842), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3010), 12, - anon_sym___extension__, + ACTIONS(2025), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, + ACTIONS(3174), 1, sym_identifier, - [60217] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1467), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3049), 2, + ACTIONS(3358), 1, anon_sym_LPAREN2, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3845), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3047), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [60248] = 12, - ACTIONS(3619), 1, + STATE(867), 1, + sym__old_style_function_declarator, + STATE(1618), 1, + sym_ms_call_modifier, + STATE(1661), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62508] = 12, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3793), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3795), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3797), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3799), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3801), 1, anon_sym_AMP, - ACTIONS(3848), 1, + ACTIONS(3876), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3789), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, + ACTIONS(3803), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3807), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3791), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3805), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60293] = 12, - ACTIONS(3619), 1, + [62553] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3773), 1, + ACTIONS(3605), 1, + anon_sym_SLASH, + ACTIONS(3607), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, + ACTIONS(3609), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, + ACTIONS(3611), 1, anon_sym_PIPE, - ACTIONS(3779), 1, + ACTIONS(3613), 1, anon_sym_CARET, - ACTIONS(3781), 1, + ACTIONS(3615), 1, anon_sym_AMP, - ACTIONS(3850), 1, - anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3878), 1, + anon_sym_RPAREN, + ACTIONS(3601), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 3, + ACTIONS(3603), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, + ACTIONS(3617), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3619), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3621), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [60338] = 12, - ACTIONS(3619), 1, + ACTIONS(3623), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62602] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3773), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, - anon_sym_AMP_AMP, - ACTIONS(3777), 1, - anon_sym_PIPE, - ACTIONS(3779), 1, - anon_sym_CARET, - ACTIONS(3781), 1, - anon_sym_AMP, - ACTIONS(3852), 1, + ACTIONS(3739), 1, anon_sym_LF, - ACTIONS(3763), 2, + ACTIONS(3741), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3767), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [60383] = 12, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3854), 1, - anon_sym_LF, - ACTIONS(3763), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3765), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [60428] = 3, - ACTIONS(3619), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62629] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3721), 1, + ACTIONS(3743), 1, anon_sym_LF, - ACTIONS(3723), 18, + ACTIONS(3745), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -126165,409 +131344,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [60455] = 11, + [62656] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3150), 1, - sym_primitive_type, - STATE(1565), 1, - sym__type_declarator, - STATE(1730), 1, - sym__type_definition_declarators, - STATE(2034), 1, + STATE(1624), 1, + sym_ms_call_modifier, + STATE(1714), 1, + sym__declarator, + STATE(2409), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1652), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [60496] = 11, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62696] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1618), 1, + sym_ms_call_modifier, + STATE(1673), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62736] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1609), 1, + sym_ms_call_modifier, + STATE(1704), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62776] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1607), 1, + sym_ms_call_modifier, + STATE(1678), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62816] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2021), 1, + anon_sym_LPAREN2, + ACTIONS(2023), 1, + anon_sym_STAR, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1724), 1, + sym__declarator, + STATE(1788), 1, + sym_parameter_list, + STATE(1832), 1, + sym__abstract_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62860] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3352), 1, + sym_identifier, + ACTIONS(3354), 1, + anon_sym_LPAREN2, + ACTIONS(3356), 1, + anon_sym_STAR, + STATE(1614), 1, + sym_ms_call_modifier, + STATE(1729), 1, + sym__field_declarator, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62900] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1620), 1, + sym_ms_call_modifier, + STATE(1689), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62940] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3174), 1, + sym_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + STATE(1621), 1, + sym_ms_call_modifier, + STATE(1709), 1, + sym__declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1647), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(39), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [62980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(3098), 1, + anon_sym_const, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(3882), 1, + anon_sym_COLON, + STATE(1040), 1, + sym_attribute_specifier, + STATE(1391), 1, + sym_enumerator_list, + ACTIONS(3100), 11, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [63015] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1776), 1, + STATE(1856), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60537] = 11, + [63056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1768), 1, + STATE(1805), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60578] = 11, + [63097] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1721), 1, + STATE(1874), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60619] = 11, + [63138] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1744), 1, + STATE(1842), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60660] = 11, + [63179] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1731), 1, + STATE(1816), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60701] = 11, + [63220] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1757), 1, + STATE(1845), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60742] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3170), 1, - anon_sym_const, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(3858), 1, - anon_sym_COLON, - STATE(1141), 1, - sym_attribute_specifier, - STATE(1347), 1, - sym_enumerator_list, - ACTIONS(3172), 11, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [60777] = 11, + [63261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1774), 1, + STATE(1837), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60818] = 11, + [63302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1751), 1, + STATE(1870), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60859] = 11, + [63343] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1565), 1, + STATE(1631), 1, sym__type_declarator, - STATE(1733), 1, + STATE(1831), 1, sym__type_definition_declarators, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60900] = 10, + [63384] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1655), 1, + STATE(1631), 1, sym__type_declarator, - STATE(2034), 1, + STATE(1876), 1, + sym__type_definition_declarators, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60938] = 11, + [63425] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3861), 1, + ACTIONS(3885), 1, sym_identifier, - ACTIONS(3867), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - STATE(1498), 1, + STATE(1580), 1, sym_gnu_asm_expression, - STATE(1546), 1, + STATE(1628), 1, sym_attribute_specifier, - STATE(1638), 1, + STATE(1715), 1, aux_sym_type_definition_repeat1, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(3863), 2, + ACTIONS(3887), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1497), 2, + STATE(1571), 2, sym_preproc_call_expression, aux_sym_function_declarator_repeat1, - ACTIONS(3865), 4, + ACTIONS(3889), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [60978] = 8, + [63465] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3209), 1, + sym_identifier, + ACTIONS(3211), 1, + anon_sym_LPAREN2, + ACTIONS(3213), 1, + anon_sym_STAR, + ACTIONS(3217), 1, + sym_primitive_type, + STATE(1730), 1, + sym__type_declarator, + STATE(2160), 1, + sym_ms_based_modifier, + ACTIONS(3215), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1728), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [63503] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3861), 1, + ACTIONS(3885), 1, sym_identifier, - ACTIONS(3867), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - STATE(1508), 1, + STATE(1573), 1, sym_gnu_asm_expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - STATE(1497), 3, + STATE(1571), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3865), 7, + ACTIONS(3889), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126575,50 +131996,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61012] = 10, + [63537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3142), 1, + ACTIONS(3209), 1, sym_identifier, - ACTIONS(3144), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - ACTIONS(3146), 1, + ACTIONS(3213), 1, anon_sym_STAR, - ACTIONS(3150), 1, + ACTIONS(3217), 1, sym_primitive_type, - STATE(1588), 1, + STATE(1655), 1, sym__type_declarator, - STATE(2034), 1, + STATE(2160), 1, sym_ms_based_modifier, - ACTIONS(3148), 4, + ACTIONS(3215), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1652), 5, + STATE(1728), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [61050] = 6, + [63575] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3861), 1, + ACTIONS(3885), 1, sym_identifier, - ACTIONS(3871), 3, + ACTIONS(3895), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1510), 3, + STATE(1578), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3869), 7, + ACTIONS(3893), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126626,313 +132047,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61079] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3861), 1, - sym_identifier, - ACTIONS(3871), 1, - anon_sym_LBRACK, - STATE(1546), 1, - sym_attribute_specifier, - STATE(1649), 1, - aux_sym_type_definition_repeat1, - ACTIONS(3873), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3875), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1511), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3869), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [61116] = 12, + [63604] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - ACTIONS(3877), 1, + ACTIONS(3897), 1, anon_sym_SEMI, - STATE(1540), 1, + STATE(1605), 1, sym__field_declarator, - STATE(1887), 1, + STATE(1915), 1, sym__field_declaration_declarator, - STATE(2119), 1, - sym_ms_based_modifier, - STATE(2197), 1, + STATE(2126), 1, sym_attribute_specifier, - STATE(1626), 5, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61157] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(825), 1, - sym__old_style_function_declarator, - STATE(1575), 1, - sym_function_declarator, - STATE(1580), 1, - sym__declarator, - STATE(1675), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1860), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61200] = 11, + [63645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(3883), 1, - aux_sym_preproc_if_token2, + ACTIONS(33), 1, + anon_sym___attribute__, ACTIONS(3885), 1, - aux_sym_preproc_else_token1, - ACTIONS(3887), 1, - aux_sym_preproc_elif_token1, - STATE(1558), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1560), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1637), 1, - sym_enumerator, - ACTIONS(3889), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2205), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(2207), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [61239] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, sym_identifier, - STATE(846), 1, - sym__old_style_function_declarator, - STATE(1572), 1, - sym__declarator, - STATE(1575), 1, - sym_function_declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1815), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61282] = 12, + ACTIONS(3895), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1575), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3893), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [63674] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - ACTIONS(3891), 1, + ACTIONS(3899), 1, anon_sym_SEMI, - STATE(1540), 1, + STATE(1605), 1, sym__field_declarator, - STATE(1830), 1, + STATE(2018), 1, sym__field_declaration_declarator, - STATE(2118), 1, - sym_attribute_specifier, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - STATE(1626), 5, + STATE(2412), 1, + sym_attribute_specifier, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61323] = 13, + [63715] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3885), 1, sym_identifier, - STATE(848), 1, - sym__old_style_function_declarator, - STATE(1575), 1, - sym_function_declarator, - STATE(1576), 1, - sym__declarator, - STATE(1690), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1786), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61366] = 12, + ACTIONS(3903), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1578), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3901), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [63744] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - ACTIONS(3893), 1, + ACTIONS(3905), 1, anon_sym_SEMI, - STATE(1540), 1, + STATE(1605), 1, sym__field_declarator, - STATE(1834), 1, + STATE(1939), 1, sym__field_declaration_declarator, - STATE(2106), 1, - sym_attribute_specifier, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - STATE(1626), 5, + STATE(2389), 1, + sym_attribute_specifier, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61407] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(851), 1, - sym__old_style_function_declarator, - STATE(1573), 1, - sym__declarator, - STATE(1575), 1, - sym_function_declarator, - STATE(1670), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1881), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61450] = 12, + [63785] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - ACTIONS(3895), 1, + ACTIONS(3907), 1, anon_sym_SEMI, - STATE(1540), 1, + STATE(1605), 1, sym__field_declarator, - STATE(1888), 1, + STATE(2015), 1, sym__field_declaration_declarator, - STATE(2119), 1, - sym_ms_based_modifier, - STATE(2175), 1, + STATE(2270), 1, sym_attribute_specifier, - STATE(1626), 5, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61491] = 6, + [63826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3861), 1, + ACTIONS(3909), 1, sym_identifier, - ACTIONS(3871), 3, + ACTIONS(3914), 1, + anon_sym___attribute__, + ACTIONS(3917), 3, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, - STATE(1511), 3, + STATE(1578), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3869), 7, + ACTIONS(3912), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126940,177 +132232,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61520] = 13, + [63855] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3919), 1, sym_identifier, - STATE(822), 1, - sym__old_style_function_declarator, - STATE(1571), 1, - sym__declarator, - STATE(1575), 1, - sym_function_declarator, - STATE(1668), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1853), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61563] = 6, + ACTIONS(3921), 1, + aux_sym_preproc_if_token2, + ACTIONS(3923), 1, + aux_sym_preproc_else_token1, + ACTIONS(3925), 1, + aux_sym_preproc_elif_token1, + STATE(1625), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1627), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1735), 1, + sym_enumerator, + ACTIONS(3927), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2233), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(2234), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [63894] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, - sym_identifier, - ACTIONS(3902), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3905), 3, + ACTIONS(3885), 1, + sym_identifier, + ACTIONS(3895), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - STATE(1510), 3, - sym_preproc_call_expression, + STATE(1628), 1, sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3900), 7, + STATE(1726), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3929), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [61592] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(3861), 1, - sym_identifier, - ACTIONS(3909), 3, - anon_sym_LBRACK, + ACTIONS(3931), 2, anon_sym_asm, anon_sym___asm__, - STATE(1510), 3, + STATE(1575), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3893), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61621] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1593), 1, - sym__declarator, - STATE(1690), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1786), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61661] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1815), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61701] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1675), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1860), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61741] = 5, + [63931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(3935), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3916), 1, + ACTIONS(3938), 1, anon_sym_LBRACK, - STATE(1515), 2, + STATE(1581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3911), 10, + ACTIONS(3933), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -127121,314 +132308,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61767] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1656), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1870), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61807] = 12, + [63957] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3581), 1, sym_identifier, - STATE(1575), 1, + STATE(1647), 1, sym_function_declarator, - STATE(1598), 1, + STATE(1773), 1, sym__declarator, - STATE(1670), 1, + STATE(1803), 1, sym__declaration_declarator, - STATE(1778), 1, + STATE(1844), 1, sym__function_declaration_declarator, - STATE(1881), 1, - sym_init_declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1584), 4, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [61847] = 12, + [63994] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3581), 1, sym_identifier, - STATE(1575), 1, + STATE(1647), 1, sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1681), 1, + STATE(1757), 1, sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1907), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61887] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1640), 1, + STATE(1773), 1, sym__declarator, - STATE(1668), 1, - sym__declaration_declarator, - STATE(1778), 1, + STATE(1844), 1, sym__function_declaration_declarator, - STATE(1853), 1, - sym_init_declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1584), 4, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [61927] = 12, + [64031] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3581), 1, sym_identifier, - STATE(1575), 1, + STATE(1647), 1, sym_function_declarator, - STATE(1640), 1, - sym__declarator, STATE(1690), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1786), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [61967] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1601), 1, - sym__declarator, - STATE(1664), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1815), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62007] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1586), 1, sym__declarator, - STATE(1675), 1, + STATE(1760), 1, sym__declaration_declarator, - STATE(1778), 1, + STATE(1844), 1, sym__function_declaration_declarator, - STATE(1860), 1, - sym_init_declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1584), 4, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [62047] = 12, + [64068] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3581), 1, sym_identifier, - STATE(1575), 1, + STATE(1647), 1, sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1670), 1, + STATE(1753), 1, sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1881), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62087] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1591), 1, + STATE(1773), 1, sym__declarator, - STATE(1668), 1, - sym__declaration_declarator, - STATE(1778), 1, + STATE(1844), 1, sym__function_declaration_declarator, - STATE(1853), 1, - sym_init_declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1584), 4, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [62127] = 12, + [64105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3342), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - ACTIONS(3879), 1, - sym_identifier, - STATE(1575), 1, - sym_function_declarator, - STATE(1640), 1, - sym__declarator, - STATE(1696), 1, - sym__declaration_declarator, - STATE(1778), 1, - sym__function_declaration_declarator, - STATE(1954), 1, - sym_init_declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1584), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [62167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 5, - anon_sym___attribute__, + ACTIONS(3944), 1, anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - sym_identifier, - ACTIONS(3920), 8, + STATE(1569), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3940), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [62188] = 3, + anon_sym_asm, + anon_sym___asm__, + [64134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 5, + ACTIONS(3946), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2892), 8, + ACTIONS(3948), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -127437,21 +132452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [62209] = 7, + [64155] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3922), 7, + ACTIONS(3950), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -127459,40 +132474,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62238] = 9, + [64184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3158), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [64205] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3928), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(3954), 1, aux_sym_preproc_if_token1, - ACTIONS(3934), 1, + ACTIONS(3958), 1, anon_sym_RBRACE, - ACTIONS(3932), 2, + ACTIONS(3956), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1916), 2, + STATE(2032), 2, sym_preproc_call, sym_enumerator, - STATE(2282), 2, + STATE(2392), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1535), 3, + STATE(1616), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62271] = 3, + [64238] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1694), 1, + sym__declarator, + STATE(1753), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64275] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1756), 1, + sym__declaration_declarator, + STATE(1773), 1, + sym__declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 5, + ACTIONS(3153), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(2854), 8, + ACTIONS(3146), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -127501,63 +132586,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [62292] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(3926), 1, - anon_sym_LBRACK, - STATE(1495), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3936), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62321] = 5, + [64333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3561), 1, + ACTIONS(3585), 1, anon_sym_LPAREN2, - STATE(1220), 1, + STATE(1273), 1, sym_preproc_argument_list, - ACTIONS(3938), 5, + ACTIONS(3960), 5, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, sym_identifier, - ACTIONS(3940), 6, + ACTIONS(3962), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [62346] = 7, + [64358] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3942), 7, + ACTIONS(3964), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -127565,21 +132628,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62375] = 7, + [64387] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1754), 1, + sym__declaration_declarator, + STATE(1773), 1, + sym__declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64424] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1763), 1, + sym__declaration_declarator, + STATE(1773), 1, + sym__declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64461] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1769), 1, + sym__declaration_declarator, + STATE(1773), 1, + sym__declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64498] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1697), 1, + sym__declarator, + STATE(1769), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64535] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3944), 7, + ACTIONS(3966), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -127587,681 +132754,757 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62404] = 9, + [64564] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3358), 1, + anon_sym_LPAREN2, + ACTIONS(3360), 1, + anon_sym_STAR, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1685), 1, + sym__declarator, + STATE(1756), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, + sym_ms_based_modifier, + STATE(1651), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [64601] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3928), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3930), 1, + ACTIONS(3954), 1, aux_sym_preproc_if_token1, - ACTIONS(3946), 1, + ACTIONS(3968), 1, anon_sym_RBRACE, - ACTIONS(3932), 2, + ACTIONS(3956), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1969), 2, + STATE(2082), 2, sym_preproc_call, sym_enumerator, - STATE(2111), 2, + STATE(2239), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1563), 3, + STATE(1590), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62437] = 9, + [64634] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(841), 1, - sym__old_style_function_declarator, - STATE(1592), 1, - sym__declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62469] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3581), 1, sym_identifier, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - STATE(844), 1, - sym__old_style_function_declarator, - STATE(1597), 1, + STATE(1647), 1, + sym_function_declarator, + STATE(1760), 1, + sym__declaration_declarator, + STATE(1773), 1, sym__declarator, - STATE(2088), 1, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62501] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3950), 1, - anon_sym_LBRACK, - STATE(1515), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3948), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62525] = 9, + [64671] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(838), 1, - sym__old_style_function_declarator, - STATE(1600), 1, + ACTIONS(3581), 1, + sym_identifier, + STATE(1647), 1, + sym_function_declarator, + STATE(1693), 1, sym__declarator, - STATE(2088), 1, + STATE(1757), 1, + sym__declaration_declarator, + STATE(1844), 1, + sym__function_declaration_declarator, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1651), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [62557] = 11, + [64708] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3952), 1, + ACTIONS(3970), 1, anon_sym_COMMA, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3976), 1, anon_sym_COLON, - STATE(1613), 1, + STATE(1706), 1, sym_parameter_list, - STATE(1752), 1, - sym_bitfield_clause, - STATE(1754), 1, + STATE(1811), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(3954), 2, + STATE(1854), 1, + sym_bitfield_clause, + ACTIONS(3972), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1564), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62593] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, - anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - STATE(834), 1, - sym__old_style_function_declarator, - STATE(1587), 1, - sym__declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62625] = 9, + [64744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(2879), 1, - sym_identifier, - ACTIONS(3342), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3980), 1, + anon_sym_LBRACK, + STATE(1581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3978), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3344), 1, - anon_sym_STAR, - STATE(826), 1, - sym__old_style_function_declarator, - STATE(1596), 1, - sym__declarator, - STATE(2088), 1, - sym_ms_based_modifier, - STATE(1575), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62657] = 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [64768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1636), 1, + STATE(1680), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62686] = 7, + [64797] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1706), 1, sym_parameter_list, - STATE(1564), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3960), 5, + ACTIONS(3982), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62713] = 8, + [64824] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1617), 1, + STATE(1699), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62742] = 6, + [64853] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, - anon_sym___attribute__, - ACTIONS(3938), 2, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3974), 1, anon_sym_LBRACK, - sym_identifier, - ACTIONS(3962), 2, + STATE(1706), 1, + sym_parameter_list, + STATE(1642), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3984), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3967), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3940), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [62767] = 10, + anon_sym___attribute__, + anon_sym_COLON, + [64880] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3971), 1, + ACTIONS(3986), 1, aux_sym_preproc_if_token2, - ACTIONS(3973), 1, - aux_sym_preproc_elif_token1, - STATE(1606), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1623), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1693), 1, - sym_enumerator, - STATE(2188), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2248), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [62800] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, + ACTIONS(3988), 1, aux_sym_preproc_else_token1, - ACTIONS(3969), 1, - sym_identifier, - ACTIONS(3973), 1, + ACTIONS(3990), 1, aux_sym_preproc_elif_token1, - ACTIONS(3975), 1, - aux_sym_preproc_if_token2, - STATE(1607), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1608), 1, + STATE(1625), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1693), 1, + STATE(2334), 1, sym_enumerator, - STATE(2195), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2297), 2, + ACTIONS(3992), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2234), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [62833] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(3956), 1, - anon_sym_LBRACK, - STATE(1613), 1, - sym_parameter_list, - STATE(1564), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3977), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [62860] = 8, + sym_preproc_elifdef_in_enumerator_list, + [64911] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(3336), 1, + ACTIONS(3352), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_LPAREN2, - ACTIONS(3340), 1, + ACTIONS(3356), 1, anon_sym_STAR, - STATE(1654), 1, + STATE(1622), 1, sym__field_declarator, - STATE(2119), 1, + STATE(2385), 1, sym_ms_based_modifier, - STATE(1626), 5, + STATE(1710), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [62889] = 9, + [64940] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(3923), 1, + aux_sym_preproc_else_token1, + ACTIONS(3994), 1, sym_identifier, - ACTIONS(3979), 1, + ACTIONS(3996), 1, aux_sym_preproc_if_token2, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(3983), 1, + ACTIONS(3998), 1, aux_sym_preproc_elif_token1, - STATE(1558), 1, + STATE(1683), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2267), 1, + STATE(1688), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1802), 1, sym_enumerator, - ACTIONS(3985), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2205), 3, + STATE(2243), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [62920] = 7, + STATE(2244), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64973] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2025), 1, + anon_sym___based, + ACTIONS(3352), 1, + sym_identifier, + ACTIONS(3354), 1, + anon_sym_LPAREN2, + ACTIONS(3356), 1, + anon_sym_STAR, + STATE(1718), 1, + sym__field_declarator, + STATE(2385), 1, + sym_ms_based_modifier, + STATE(1710), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [65002] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1706), 1, sym_parameter_list, - STATE(1564), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3987), 5, + ACTIONS(4000), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62947] = 8, + [65029] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4002), 1, + sym_identifier, + ACTIONS(4005), 1, + aux_sym_preproc_if_token1, + ACTIONS(4011), 1, + sym_preproc_directive, + ACTIONS(4014), 1, + anon_sym_RBRACE, + ACTIONS(4008), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2226), 2, + sym_preproc_call, + sym_enumerator, + STATE(1616), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [65058] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 1, + aux_sym_preproc_else_token1, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(3998), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4016), 1, + aux_sym_preproc_if_token2, + STATE(1682), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1713), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1802), 1, + sym_enumerator, + STATE(2196), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + STATE(2197), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [65091] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1609), 1, + STATE(1687), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62976] = 8, + [65120] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3923), 1, + aux_sym_preproc_else_token1, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(3998), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4018), 1, + aux_sym_preproc_if_token2, + STATE(1695), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1696), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1802), 1, + sym_enumerator, + STATE(2405), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(2406), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [65153] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1632), 1, + STATE(1691), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63005] = 8, + [65182] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1624), 1, + STATE(1711), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63034] = 9, + [65211] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - ACTIONS(3958), 1, + ACTIONS(3976), 1, anon_sym_COLON, - STATE(1613), 1, + STATE(1706), 1, sym_parameter_list, - STATE(1837), 1, + STATE(2019), 1, sym_bitfield_clause, - STATE(1564), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3989), 3, + ACTIONS(4020), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [63065] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2103), 1, - anon_sym___based, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3338), 1, - anon_sym_LPAREN2, - ACTIONS(3340), 1, - anon_sym_STAR, - STATE(1556), 1, - sym__field_declarator, - STATE(2119), 1, - sym_ms_based_modifier, - STATE(1626), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [63094] = 9, + [65242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(3983), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3991), 1, - aux_sym_preproc_if_token2, - STATE(1610), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2267), 1, - sym_enumerator, - ACTIONS(3985), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2268), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [63125] = 8, + STATE(845), 1, + sym_string_literal, + ACTIONS(4024), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1875), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65267] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2103), 1, + ACTIONS(2025), 1, anon_sym___based, - ACTIONS(2879), 1, + ACTIONS(3174), 1, sym_identifier, - ACTIONS(3342), 1, + ACTIONS(3358), 1, anon_sym_LPAREN2, - ACTIONS(3344), 1, + ACTIONS(3360), 1, anon_sym_STAR, - STATE(1615), 1, + STATE(1724), 1, sym__declarator, - STATE(2088), 1, + STATE(2409), 1, sym_ms_based_modifier, - STATE(1575), 5, + STATE(1647), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [63154] = 8, + [65296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3993), 1, - aux_sym_preproc_if_token2, - ACTIONS(3995), 1, + ACTIONS(3988), 1, aux_sym_preproc_else_token1, - ACTIONS(3997), 1, + ACTIONS(3990), 1, aux_sym_preproc_elif_token1, - ACTIONS(3999), 2, + ACTIONS(4026), 1, + aux_sym_preproc_if_token2, + STATE(1676), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2334), 1, + sym_enumerator, + ACTIONS(3992), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1611), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2263), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [63183] = 7, + STATE(2331), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [65327] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3956), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - STATE(1613), 1, + STATE(1706), 1, sym_parameter_list, - STATE(1564), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4001), 5, + ACTIONS(4028), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [63210] = 10, + [65354] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - aux_sym_preproc_else_token1, - ACTIONS(3969), 1, + ACTIONS(3919), 1, sym_identifier, - ACTIONS(3973), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4003), 1, + ACTIONS(4030), 1, aux_sym_preproc_if_token2, - STATE(1628), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1629), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1693), 1, + ACTIONS(4032), 1, + aux_sym_preproc_else_token1, + ACTIONS(4034), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4036), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1692), 2, sym_enumerator, - STATE(2117), 2, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2236), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - STATE(2125), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63243] = 8, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [65383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4040), 1, + anon_sym___attribute__, + ACTIONS(3960), 2, + anon_sym_LBRACK, sym_identifier, - ACTIONS(4008), 1, - aux_sym_preproc_if_token1, - ACTIONS(4014), 1, - sym_preproc_directive, - ACTIONS(4017), 1, - anon_sym_RBRACE, - ACTIONS(4011), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(2216), 2, - sym_preproc_call, - sym_enumerator, - STATE(1563), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [63272] = 5, + ACTIONS(4038), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4043), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(3962), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [65408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4021), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - STATE(1515), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4019), 6, + STATE(1827), 1, + sym_gnu_asm_output_operand, + STATE(2173), 1, + sym_string_literal, + ACTIONS(4045), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4051), 1, + anon_sym_LBRACK, + ACTIONS(4049), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [63294] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65450] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4023), 1, + ACTIONS(4053), 1, anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(4057), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1717), 1, sym_parameter_list, - STATE(1712), 1, + STATE(1867), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4025), 2, + ACTIONS(4055), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(1595), 2, + STATE(1670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63324] = 6, + [65480] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1760), 1, - sym_gnu_asm_output_operand, - STATE(2255), 1, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(153), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65512] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4057), 1, + anon_sym_LBRACK, + STATE(1717), 1, + sym_parameter_list, + STATE(1670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4063), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [65538] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(516), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4065), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65588] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + anon_sym_LBRACK, + STATE(1868), 1, + sym_gnu_asm_input_operand, + STATE(2136), 1, sym_string_literal, - ACTIONS(4029), 2, + ACTIONS(4069), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -128270,31 +133513,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63348] = 7, + [65612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4075), 1, + anon_sym_LBRACK, + ACTIONS(4073), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_LBRACK, + ACTIONS(4077), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65648] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(498), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65680] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(245), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65712] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4057), 1, + anon_sym_LBRACK, + STATE(1717), 1, + sym_parameter_list, + STATE(1670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4081), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [65738] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4085), 1, + anon_sym_LBRACK, + STATE(1581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4083), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [65760] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(4057), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1717), 1, sym_parameter_list, - STATE(1595), 2, + STATE(1670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4033), 4, + ACTIONS(4087), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63374] = 3, + [65786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_LBRACK, + ACTIONS(4089), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [65804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(4095), 1, anon_sym_LBRACK, - ACTIONS(4035), 9, + ACTIONS(4093), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -128304,12 +133672,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63392] = 3, + [65822] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(565), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(451), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4099), 1, anon_sym_LBRACK, - ACTIONS(4039), 9, + ACTIONS(4097), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -128319,768 +133709,940 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63410] = 7, + [65872] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(4057), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1717), 1, sym_parameter_list, - STATE(1595), 2, + STATE(1670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4043), 4, + ACTIONS(4101), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63436] = 10, + [65898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_LPAREN2, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(447), 1, - sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1494), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63468] = 10, + ACTIONS(4103), 1, + sym_identifier, + ACTIONS(4107), 1, + sym_system_lib_string, + STATE(2297), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65919] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_LPAREN2, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(162), 1, - sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1494), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63500] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4059), 1, anon_sym_LPAREN2, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(487), 1, + STATE(164), 1, sym_compound_statement, - STATE(1189), 1, + STATE(1216), 1, sym__old_style_parameter_list, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63532] = 3, + [65948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4051), 1, + ACTIONS(4099), 1, anon_sym_LBRACK, - ACTIONS(4049), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4097), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4053), 9, + ACTIONS(4109), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63568] = 10, + [65967] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(565), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4059), 1, anon_sym_LPAREN2, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(214), 1, + STATE(433), 1, sym_compound_statement, - STATE(1189), 1, + STATE(1216), 1, sym__old_style_parameter_list, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63600] = 3, + [65996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, - anon_sym_LBRACK, - ACTIONS(4057), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63618] = 3, + ACTIONS(4022), 1, + sym_identifier, + STATE(845), 1, + sym_string_literal, + STATE(1987), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, - anon_sym_LBRACK, - ACTIONS(4061), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63636] = 7, + STATE(498), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66046] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(4057), 1, anon_sym_LBRACK, - STATE(1651), 1, + STATE(1717), 1, sym_parameter_list, - STATE(1595), 2, + STATE(1670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4065), 4, + ACTIONS(4111), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63662] = 10, + [66071] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2131), 1, + anon_sym_LPAREN2, + ACTIONS(2133), 1, + anon_sym_STAR, + ACTIONS(3182), 1, + anon_sym_LBRACK, + STATE(1788), 1, + sym_parameter_list, + STATE(1832), 1, + sym__abstract_declarator, + STATE(1786), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [66096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + sym_identifier, + STATE(845), 1, + sym_string_literal, + STATE(1901), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66117] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4059), 1, anon_sym_LPAREN2, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(428), 1, + STATE(491), 1, sym_compound_statement, - STATE(1189), 1, + STATE(1216), 1, sym__old_style_parameter_list, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63694] = 6, + [66146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, - anon_sym_LBRACK, - STATE(1726), 1, - sym_gnu_asm_input_operand, - STATE(2194), 1, + ACTIONS(4022), 1, + sym_identifier, + STATE(845), 1, sym_string_literal, - ACTIONS(4067), 2, - anon_sym_RPAREN, - anon_sym_COLON, + STATE(1974), 2, + sym__string, + sym_concatenated_string, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63718] = 7, + [66167] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 1, + sym_identifier, + ACTIONS(4115), 1, + sym_system_lib_string, + STATE(2305), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4105), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66188] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1651), 1, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + STATE(233), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1569), 1, sym_parameter_list, - STATE(1595), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4071), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [63744] = 5, + [66217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4117), 1, sym_identifier, - STATE(816), 1, + ACTIONS(4119), 1, + sym_system_lib_string, + STATE(2194), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1827), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(4105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63765] = 4, + [66238] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, - anon_sym_LBRACK, - ACTIONS(4053), 4, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(516), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66267] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(565), 1, anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, anon_sym_EQ, - ACTIONS(4075), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [63784] = 5, + STATE(451), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4077), 1, + ACTIONS(4121), 1, sym_identifier, - ACTIONS(4081), 1, + ACTIONS(4123), 1, sym_system_lib_string, - STATE(2113), 2, + STATE(2249), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4079), 5, + ACTIONS(4105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63805] = 9, + [66317] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_LPAREN2, + STATE(536), 1, + sym_compound_statement, + STATE(1216), 1, + sym__old_style_parameter_list, + STATE(1569), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66346] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, + ACTIONS(4061), 1, anon_sym_EQ, - STATE(428), 1, + STATE(153), 1, sym_compound_statement, - STATE(1494), 1, + STATE(1567), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63834] = 9, + [66375] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4022), 1, + sym_identifier, + STATE(845), 1, + sym_string_literal, + STATE(1887), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [66396] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - STATE(223), 1, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(245), 1, sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1495), 1, + STATE(1567), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63863] = 7, + [66425] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(4127), 1, anon_sym_LBRACK, - STATE(1651), 1, - sym_parameter_list, - STATE(1595), 2, + STATE(1581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4083), 3, + ACTIONS(4125), 5, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [63888] = 5, + [66446] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 1, + ACTIONS(4129), 1, sym_identifier, - ACTIONS(4087), 1, + ACTIONS(4131), 1, sym_system_lib_string, - STATE(2084), 2, + STATE(2357), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4079), 5, + ACTIONS(4105), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63909] = 5, + [66467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 1, + ACTIONS(4022), 1, sym_identifier, - ACTIONS(4091), 1, - sym_system_lib_string, - STATE(2124), 2, - sym_preproc_call_expression, + STATE(845), 1, sym_string_literal, - ACTIONS(4079), 5, + STATE(2011), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63930] = 9, + [66488] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(447), 1, + STATE(233), 1, sym_compound_statement, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63959] = 9, + [66514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(4135), 1, + anon_sym_LBRACK, + ACTIONS(4133), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, + anon_sym_COLON, + [66530] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4137), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(141), 1, - sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1495), 1, - sym_parameter_list, - STATE(1538), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [63988] = 9, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [66546] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 1, + sym_identifier, + ACTIONS(4146), 1, + aux_sym_preproc_elif_token1, + STATE(1676), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2334), 1, + sym_enumerator, + ACTIONS(4144), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [66568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4150), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4152), 1, + anon_sym_EQ, + ACTIONS(4148), 6, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [66586] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(565), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(214), 1, + STATE(433), 1, sym_compound_statement, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64017] = 5, + [66612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, - sym_identifier, - ACTIONS(4095), 1, - sym_system_lib_string, - STATE(2180), 2, - sym_preproc_call_expression, + ACTIONS(4071), 1, + anon_sym_LBRACK, + STATE(1933), 1, + sym_gnu_asm_input_operand, + STATE(2136), 1, sym_string_literal, - ACTIONS(4079), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64038] = 5, + [66632] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4099), 1, + ACTIONS(565), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1515), 2, + STATE(413), 1, + sym_compound_statement, + STATE(1569), 1, + sym_parameter_list, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4097), 5, + [66658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4156), 1, + anon_sym_LBRACK, + ACTIONS(4154), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [66674] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(3988), 1, + aux_sym_preproc_else_token1, + ACTIONS(4158), 1, + aux_sym_preproc_if_token2, + ACTIONS(4160), 1, + aux_sym_preproc_elif_token1, + STATE(1738), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, + sym_enumerator, + STATE(2225), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [66700] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(3988), 1, + aux_sym_preproc_else_token1, + ACTIONS(4160), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4162), 1, + aux_sym_preproc_if_token2, + STATE(1738), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, + sym_enumerator, + STATE(2401), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [66726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4166), 1, + anon_sym_LBRACK, + ACTIONS(4164), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [64059] = 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [66742] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(565), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - STATE(478), 1, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(436), 1, sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1495), 1, + STATE(1567), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64088] = 9, + [66768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4170), 1, + anon_sym_LBRACK, + ACTIONS(4168), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [66784] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - STATE(483), 1, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(248), 1, sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64117] = 9, + [66810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_preproc_else_token1, + ACTIONS(4172), 1, + aux_sym_preproc_if_token2, + ACTIONS(4174), 1, + aux_sym_preproc_elif_token1, + STATE(1759), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2400), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [66834] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(487), 1, + STATE(536), 1, sym_compound_statement, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64146] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 1, - sym_identifier, - STATE(816), 1, - sym_string_literal, - STATE(1868), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64167] = 9, + [66860] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3926), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - STATE(473), 1, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(493), 1, sym_compound_statement, - STATE(1189), 1, - sym__old_style_parameter_list, - STATE(1495), 1, + STATE(1567), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64196] = 9, + [66886] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(162), 1, + STATE(524), 1, sym_compound_statement, - STATE(1494), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64225] = 5, + [66912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, + ACTIONS(4176), 1, sym_identifier, - STATE(816), 1, - sym_string_literal, - STATE(1871), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64246] = 5, + ACTIONS(4181), 1, + aux_sym_preproc_elif_token1, + STATE(1692), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4179), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [66932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, - sym_identifier, - ACTIONS(4103), 1, - sym_system_lib_string, - STATE(2156), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(4079), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64267] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(236), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66958] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 1, - sym_identifier, - STATE(816), 1, - sym_string_literal, - STATE(1891), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64288] = 7, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(156), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [66984] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3995), 1, + ACTIONS(3988), 1, aux_sym_preproc_else_token1, - ACTIONS(4105), 1, - aux_sym_preproc_if_token2, - ACTIONS(4107), 1, + ACTIONS(4160), 1, aux_sym_preproc_elif_token1, - STATE(1629), 2, + ACTIONS(4183), 1, + aux_sym_preproc_if_token2, + STATE(1738), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2117), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64312] = 7, + STATE(2362), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, + ACTIONS(3994), 1, sym_identifier, - ACTIONS(3995), 1, + ACTIONS(4032), 1, aux_sym_preproc_else_token1, - ACTIONS(4107), 1, + ACTIONS(4174), 1, aux_sym_preproc_elif_token1, - ACTIONS(4109), 1, + ACTIONS(4185), 1, aux_sym_preproc_if_token2, - STATE(1682), 2, + STATE(1759), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2179), 2, + STATE(2361), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [64336] = 7, + [67034] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, - sym_identifier, - ACTIONS(3995), 1, - aux_sym_preproc_else_token1, - ACTIONS(4107), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4111), 1, - aux_sym_preproc_if_token2, - STATE(1682), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2127), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64360] = 8, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(515), 1, + sym_compound_statement, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67060] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3981), 1, + ACTIONS(3988), 1, aux_sym_preproc_else_token1, - ACTIONS(4113), 1, - aux_sym_preproc_if_token2, - ACTIONS(4115), 1, + ACTIONS(4160), 1, aux_sym_preproc_elif_token1, - STATE(1680), 1, + ACTIONS(4187), 1, + aux_sym_preproc_if_token2, + STATE(1682), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, + STATE(2399), 1, sym_enumerator, - STATE(2132), 2, + STATE(2196), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64386] = 8, + [67086] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(551), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(473), 1, + STATE(143), 1, sym_compound_statement, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64412] = 6, + [67112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, - sym_identifier, - ACTIONS(4122), 1, - aux_sym_preproc_elif_token1, - STATE(1610), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2267), 1, - sym_enumerator, - ACTIONS(4120), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64434] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(1569), 1, + sym_parameter_list, + ACTIONS(4189), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67136] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(4129), 1, + ACTIONS(3988), 1, + aux_sym_preproc_else_token1, + ACTIONS(4018), 1, + aux_sym_preproc_if_token2, + ACTIONS(4160), 1, aux_sym_preproc_elif_token1, - STATE(1611), 2, + STATE(1695), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4127), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64454] = 3, + STATE(2406), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(4193), 1, anon_sym_LBRACK, - ACTIONS(4131), 7, + ACTIONS(4191), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -129088,12 +134650,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64470] = 3, + [67178] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(3988), 1, + aux_sym_preproc_else_token1, + ACTIONS(3996), 1, + aux_sym_preproc_if_token2, + ACTIONS(4160), 1, + aux_sym_preproc_elif_token1, + STATE(1683), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, + sym_enumerator, + STATE(2243), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [67204] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(164), 1, + sym_compound_statement, + STATE(1569), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4137), 1, + ACTIONS(4197), 1, anon_sym_LBRACK, - ACTIONS(4135), 7, + ACTIONS(4195), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -129101,12 +134699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64486] = 3, + [67246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4201), 1, anon_sym_LBRACK, - ACTIONS(4139), 7, + ACTIONS(4199), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -129114,640 +134712,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64502] = 8, + [67262] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_preproc_else_token1, + ACTIONS(4174), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4203), 1, + aux_sym_preproc_if_token2, + STATE(1696), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2405), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [67286] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3994), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_preproc_else_token1, + ACTIONS(4174), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4205), 1, + aux_sym_preproc_if_token2, + STATE(1688), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2244), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [67310] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(141), 1, + STATE(491), 1, sym_compound_statement, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64528] = 5, + [67336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 1, + ACTIONS(4209), 1, anon_sym_LBRACK, - STATE(1859), 1, - sym_gnu_asm_output_operand, - STATE(2255), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64548] = 8, + ACTIONS(4207), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [67352] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(483), 1, + STATE(460), 1, sym_compound_statement, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64574] = 3, + [67378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(4143), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64590] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1772), 1, + STATE(1975), 1, + sym_gnu_asm_output_operand, + STATE(2173), 1, sym_string_literal, - ACTIONS(4147), 2, - anon_sym_RPAREN, - anon_sym_COLON, ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64608] = 7, + [67398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 1, + ACTIONS(3994), 1, sym_identifier, - ACTIONS(3995), 1, + ACTIONS(4032), 1, aux_sym_preproc_else_token1, - ACTIONS(4107), 1, + ACTIONS(4174), 1, aux_sym_preproc_elif_token1, - ACTIONS(4149), 1, + ACTIONS(4211), 1, aux_sym_preproc_if_token2, - STATE(1606), 2, + STATE(1759), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2188), 2, + STATE(2237), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [64632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3971), 1, - aux_sym_preproc_if_token2, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(4115), 1, - aux_sym_preproc_elif_token1, - STATE(1623), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - STATE(2248), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64658] = 7, + [67422] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - STATE(1495), 1, - sym_parameter_list, - ACTIONS(4151), 2, - anon_sym_COMMA, + ACTIONS(4213), 1, anon_sym_RPAREN, - STATE(1538), 2, + STATE(1569), 1, + sym_parameter_list, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64682] = 8, + [67445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(4115), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4153), 1, - aux_sym_preproc_if_token2, - STATE(1680), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - STATE(2172), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64708] = 8, + ACTIONS(3880), 1, + anon_sym___attribute__, + STATE(1737), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(3929), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [67462] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(4057), 1, anon_sym_LBRACK, - STATE(478), 1, - sym_compound_statement, - STATE(1495), 1, + ACTIONS(4215), 1, + anon_sym_RPAREN, + STATE(1717), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64734] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4159), 1, - anon_sym_EQ, - ACTIONS(4155), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 1, - anon_sym_LBRACK, - ACTIONS(4161), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64768] = 3, + [67485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4167), 1, + ACTIONS(4219), 1, anon_sym_LBRACK, - ACTIONS(4165), 7, + ACTIONS(4217), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64784] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(4115), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4169), 1, - aux_sym_preproc_if_token2, - STATE(1680), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - STATE(2083), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64810] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 1, - sym_identifier, - ACTIONS(3995), 1, - aux_sym_preproc_else_token1, - ACTIONS(4107), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4171), 1, - aux_sym_preproc_if_token2, - STATE(1682), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2076), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64834] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(4003), 1, - aux_sym_preproc_if_token2, - ACTIONS(4115), 1, - aux_sym_preproc_elif_token1, - STATE(1628), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - STATE(2125), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64860] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(3981), 1, - aux_sym_preproc_else_token1, - ACTIONS(4115), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4173), 1, - aux_sym_preproc_if_token2, - STATE(1608), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - STATE(2297), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64886] = 8, + [67500] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - STATE(223), 1, - sym_compound_statement, - STATE(1495), 1, + ACTIONS(4221), 1, + anon_sym_RPAREN, + STATE(1706), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64912] = 3, + [67523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, + ACTIONS(4225), 1, anon_sym_LBRACK, - ACTIONS(4175), 7, + ACTIONS(4223), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64928] = 3, + [67538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 1, + ACTIONS(4229), 1, anon_sym_LBRACK, - ACTIONS(4179), 7, + ACTIONS(4227), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64944] = 5, + [67553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 1, + ACTIONS(4233), 1, anon_sym_LBRACK, - STATE(1844), 1, - sym_gnu_asm_input_operand, - STATE(2194), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [64964] = 7, + ACTIONS(4231), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_LBRACK, + ACTIONS(4238), 1, + anon_sym_EQ, + ACTIONS(4240), 1, + anon_sym_DOT, + STATE(1722), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [67587] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4183), 1, + ACTIONS(4061), 1, + anon_sym_EQ, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67610] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(4243), 1, anon_sym_RPAREN, - STATE(1495), 1, + STATE(1569), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64987] = 4, + [67633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COMMA, - ACTIONS(4189), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4185), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2697), 1, + anon_sym_LBRACE, + ACTIONS(4245), 1, sym_identifier, - [65004] = 4, + STATE(969), 1, + sym_field_declaration_list, + STATE(1790), 1, + sym_attribute_specifier, + STATE(1904), 1, + sym_ms_declspec_modifier, + [67658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3873), 4, + ACTIONS(4247), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [65021] = 3, + [67675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4193), 1, + ACTIONS(4251), 1, anon_sym_LBRACK, - ACTIONS(4191), 6, + ACTIONS(4249), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [65036] = 7, + [67690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK, + ACTIONS(4253), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67705] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(3926), 1, + ACTIONS(3974), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_EQ, - STATE(1494), 1, + ACTIONS(4257), 1, + anon_sym_RPAREN, + STATE(1706), 1, sym_parameter_list, - STATE(1538), 2, + STATE(1642), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [65059] = 5, + [67728] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4057), 1, anon_sym_LBRACK, - ACTIONS(4195), 1, - anon_sym_EQ, - ACTIONS(4197), 1, - anon_sym_DOT, - STATE(1644), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [65078] = 3, + ACTIONS(4259), 1, + anon_sym_RPAREN, + STATE(1717), 1, + sym_parameter_list, + STATE(1670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [67751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, + ACTIONS(4263), 1, anon_sym_LBRACK, - ACTIONS(4199), 6, + ACTIONS(4261), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [65093] = 3, + [67766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 1, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(4265), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [67781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 1, anon_sym_LBRACK, - ACTIONS(4203), 6, + ACTIONS(4269), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [65108] = 5, + [67796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(2083), 1, anon_sym_LBRACK, - ACTIONS(4210), 1, + ACTIONS(4273), 1, anon_sym_EQ, - ACTIONS(4212), 1, + ACTIONS(4275), 1, anon_sym_DOT, - STATE(1644), 4, + STATE(1722), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [65127] = 3, + [67815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 1, + anon_sym_COMMA, + ACTIONS(4281), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4277), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [67832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 1, + ACTIONS(4285), 1, anon_sym_LBRACK, - ACTIONS(4215), 6, + ACTIONS(4283), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [65142] = 4, + [67847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4289), 1, anon_sym___attribute__, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(4219), 4, + ACTIONS(4287), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [65159] = 3, + [67864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4141), 1, + sym_identifier, + STATE(1738), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2399), 1, + sym_enumerator, + ACTIONS(4144), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [67882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4294), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [67896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4298), 1, + anon_sym_SEMI, + STATE(1881), 1, + aux_sym_declaration_repeat1, + STATE(1882), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [67916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_LBRACK, - ACTIONS(4224), 6, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4302), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [65174] = 3, + anon_sym_COLON, + [67934] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(824), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [67948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_LBRACK, - ACTIONS(4228), 6, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4306), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_COLON, + [67966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, anon_sym_LPAREN2, + ACTIONS(4304), 1, + anon_sym_LBRACK, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4308), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [67984] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4310), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [65189] = 4, + STATE(1889), 1, + sym_gnu_asm_expression, + STATE(1890), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - STATE(1646), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(4232), 4, + ACTIONS(4312), 1, + anon_sym_LPAREN2, + STATE(1749), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4314), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, anon_sym_COMMA, + ACTIONS(4316), 1, anon_sym_SEMI, + STATE(1960), 1, + aux_sym_declaration_repeat1, + STATE(1961), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65206] = 8, + [68040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2849), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - sym_identifier, - STATE(1103), 1, - sym_field_declaration_list, - STATE(1694), 1, - sym_attribute_specifier, - STATE(1836), 1, - sym_ms_declspec_modifier, - [65231] = 3, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + STATE(1775), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4314), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4320), 1, + anon_sym_LPAREN2, + STATE(1774), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4314), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_LBRACK, - ACTIONS(4236), 6, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4322), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [65246] = 3, + anon_sym_COLON, + [68090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_LBRACK, - ACTIONS(4240), 6, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4324), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_COLON, + [68108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4326), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [65261] = 3, + STATE(1930), 1, + sym_gnu_asm_expression, + STATE(1941), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 1, - anon_sym_LBRACK, - ACTIONS(4244), 6, + ACTIONS(4296), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(4328), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [65276] = 7, + STATE(1920), 1, + sym_gnu_asm_expression, + STATE(1921), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(3956), 1, - anon_sym_LBRACK, - ACTIONS(4248), 1, - anon_sym_RPAREN, - STATE(1613), 1, - sym_parameter_list, - STATE(1564), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65299] = 7, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4330), 1, + anon_sym_SEMI, + STATE(1999), 1, + aux_sym_declaration_repeat1, + STATE(2006), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4027), 1, + ACTIONS(4304), 1, anon_sym_LBRACK, - ACTIONS(4250), 1, - anon_sym_RPAREN, - STATE(1651), 1, + STATE(1791), 1, sym_parameter_list, - STATE(1595), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [65322] = 6, + ACTIONS(4332), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [68186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4254), 1, + ACTIONS(4334), 1, anon_sym_SEMI, - STATE(1865), 1, - aux_sym_declaration_repeat1, - STATE(1866), 1, + STATE(1944), 1, sym_gnu_asm_expression, - ACTIONS(4256), 2, + STATE(1945), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65342] = 3, + [68206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4260), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [65356] = 3, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4336), 1, + anon_sym_SEMI, + STATE(1903), 1, + sym_gnu_asm_expression, + STATE(1908), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68226] = 3, ACTIONS(3), 1, sym_comment, - STATE(1790), 1, + STATE(2335), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -129755,338 +135428,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65370] = 3, + [68240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_EQ, - ACTIONS(4155), 5, - anon_sym_COMMA, + ACTIONS(4338), 1, + sym_identifier, + STATE(1759), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4179), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - sym_identifier, - [65384] = 4, + [68256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_LPAREN2, - STATE(1662), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4266), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65400] = 3, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4341), 1, + anon_sym_SEMI, + STATE(2005), 1, + aux_sym_declaration_repeat1, + STATE(2008), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 2, + ACTIONS(4343), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4270), 4, + ACTIONS(4345), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LPAREN2, - STATE(1678), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4266), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65430] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2011), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65444] = 6, + [68290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, - ACTIONS(4274), 1, - anon_sym_SEMI, - STATE(1806), 1, - sym_gnu_asm_expression, - STATE(1807), 1, - aux_sym_declaration_repeat1, - ACTIONS(4256), 2, - anon_sym_asm, - anon_sym___asm__, - [65464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4276), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 2, + ACTIONS(4347), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4282), 4, + ACTIONS(4349), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 1, - anon_sym_LPAREN2, - STATE(1669), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4266), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65512] = 6, + [68304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4286), 1, + ACTIONS(4351), 1, anon_sym_SEMI, - STATE(1851), 1, + STATE(1907), 1, aux_sym_declaration_repeat1, - STATE(1852), 1, - sym_gnu_asm_expression, - ACTIONS(4256), 2, - anon_sym_asm, - anon_sym___asm__, - [65532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_LPAREN2, - STATE(1678), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4266), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65548] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, - ACTIONS(4290), 1, - anon_sym_SEMI, - STATE(1895), 1, + STATE(1912), 1, sym_gnu_asm_expression, - STATE(1898), 1, - aux_sym_declaration_repeat1, - ACTIONS(4256), 2, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65568] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4292), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65586] = 3, + [68324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 2, + ACTIONS(4014), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4282), 4, + ACTIONS(4353), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65600] = 3, + [68338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 2, + ACTIONS(4355), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4294), 4, + ACTIONS(4357), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65614] = 3, + [68352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4120), 5, + ACTIONS(4359), 1, + anon_sym_EQ, + ACTIONS(4148), 5, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, sym_identifier, - [65628] = 6, + [68366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4361), 1, anon_sym_SEMI, - STATE(1872), 1, - sym_gnu_asm_expression, - STATE(1873), 1, + STATE(1940), 1, aux_sym_declaration_repeat1, - ACTIONS(4256), 2, + STATE(1947), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65648] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(799), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65662] = 3, + [68386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 2, + ACTIONS(4347), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4300), 4, + ACTIONS(4349), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65676] = 4, + [68400] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, - anon_sym_LPAREN2, - STATE(1678), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4304), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65692] = 5, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4363), 1, + anon_sym_SEMI, + STATE(1885), 1, + sym_gnu_asm_expression, + STATE(1902), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + [68420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4365), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4367), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [68434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(3942), 1, anon_sym_LPAREN2, - ACTIONS(4278), 1, + ACTIONS(4304), 1, anon_sym_LBRACK, - STATE(1711), 1, + STATE(1791), 1, sym_parameter_list, - ACTIONS(4307), 3, + ACTIONS(4369), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [65710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 1, - sym_identifier, - STATE(1680), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2128), 1, - sym_enumerator, - ACTIONS(4120), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [65728] = 6, + [68452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4309), 1, + ACTIONS(4371), 1, anon_sym_SEMI, - STATE(1896), 1, - aux_sym_declaration_repeat1, - STATE(1899), 1, + STATE(2009), 1, sym_gnu_asm_expression, - ACTIONS(4256), 2, + STATE(2010), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65748] = 4, + [68472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4311), 1, - sym_identifier, - STATE(1682), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4127), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [65764] = 3, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(3944), 1, + anon_sym_LBRACK, + STATE(1567), 1, + sym_parameter_list, + STATE(1606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [68492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4373), 1, + anon_sym_LPAREN2, + STATE(1774), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4375), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_LPAREN2, + STATE(1774), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4314), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [68524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 2, + ACTIONS(4380), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4316), 4, + ACTIONS(4382), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65778] = 5, + [68538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4318), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65796] = 3, + ACTIONS(4146), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4144), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [68552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 2, + ACTIONS(4384), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4322), 4, + ACTIONS(4386), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65810] = 3, + [68566] = 3, ACTIONS(3), 1, sym_comment, - STATE(2016), 1, + STATE(2386), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -130094,5962 +135682,6284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [65824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4326), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [65838] = 3, + [68580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 2, + ACTIONS(4343), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4260), 4, + ACTIONS(4345), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65852] = 3, + [68594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 2, + ACTIONS(4388), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4330), 4, + ACTIONS(4390), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65866] = 6, + [68608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4332), 1, + ACTIONS(4392), 1, anon_sym_SEMI, - STATE(1857), 1, - aux_sym_declaration_repeat1, - STATE(1858), 1, + STATE(1883), 1, sym_gnu_asm_expression, - ACTIONS(4256), 2, + STATE(1996), 1, + aux_sym_declaration_repeat1, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - [65886] = 5, + [68628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4334), 3, + ACTIONS(4394), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [65904] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4278), 1, anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4336), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - [65922] = 3, + [68639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + ACTIONS(4398), 1, + anon_sym_COLON_COLON, + STATE(2094), 1, + sym_argument_list, + ACTIONS(4396), 2, anon_sym_COMMA, - ACTIONS(4185), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [65935] = 6, + anon_sym_RBRACK_RBRACK, + [68656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2849), 1, - anon_sym_LBRACE, - ACTIONS(4340), 1, - sym_identifier, - STATE(1078), 1, - sym_field_declaration_list, - STATE(1820), 1, - sym_ms_declspec_modifier, - [65954] = 2, + ACTIONS(4400), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [68667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 5, + ACTIONS(4402), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65965] = 4, + [68678] = 4, ACTIONS(3), 1, sym_comment, - STATE(1919), 1, + STATE(2024), 1, sym_gnu_asm_expression, - ACTIONS(4256), 2, + ACTIONS(4300), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(4344), 2, + ACTIONS(4404), 2, anon_sym_COMMA, anon_sym_SEMI, - [65980] = 2, + [68693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 5, + ACTIONS(4406), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65991] = 2, + [68704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 5, + ACTIONS(4408), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66002] = 2, + [68715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2697), 1, + anon_sym_LBRACE, + ACTIONS(4410), 1, + sym_identifier, + STATE(968), 1, + sym_field_declaration_list, + STATE(1968), 1, + sym_ms_declspec_modifier, + [68734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 5, + ACTIONS(4412), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66013] = 2, + [68745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 5, + ACTIONS(4414), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66024] = 6, + [68756] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2849), 1, + ACTIONS(2697), 1, anon_sym_LBRACE, - ACTIONS(4354), 1, + ACTIONS(4416), 1, sym_identifier, - STATE(1054), 1, + STATE(967), 1, sym_field_declaration_list, - STATE(1842), 1, + STATE(1932), 1, sym_ms_declspec_modifier, - [66043] = 6, + [68775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(4356), 1, - aux_sym_preproc_if_token2, - STATE(1637), 1, - sym_enumerator, - STATE(1734), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1784), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [66062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4358), 5, + ACTIONS(4418), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66073] = 5, + [68786] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - STATE(1711), 1, - sym_parameter_list, - ACTIONS(4151), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [66090] = 2, + ACTIONS(3919), 1, + sym_identifier, + ACTIONS(4420), 1, + aux_sym_preproc_if_token2, + STATE(1735), 1, + sym_enumerator, + STATE(1822), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1823), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [68805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 5, + ACTIONS(4422), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66101] = 2, + [68816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 5, + ACTIONS(4424), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66112] = 2, + [68827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4364), 5, + ACTIONS(4426), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - ACTIONS(4368), 1, - anon_sym_COLON_COLON, - STATE(1988), 1, - sym_argument_list, - ACTIONS(4366), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [66140] = 2, + [68838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 5, + ACTIONS(4428), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66151] = 2, + [68849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3942), 1, anon_sym_LPAREN2, + ACTIONS(4304), 1, anon_sym_LBRACK, - anon_sym_COLON, - [66162] = 2, + STATE(1791), 1, + sym_parameter_list, + ACTIONS(4189), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [68866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 5, + ACTIONS(4430), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [66173] = 4, + [68877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(4432), 1, anon_sym_COMMA, - STATE(1729), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4376), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [66187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4378), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [66197] = 4, + ACTIONS(4277), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [68890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 1, + STATE(2092), 1, + sym_gnu_asm_expression, + ACTIONS(4300), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4434), 2, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4383), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66211] = 5, - ACTIONS(3619), 1, + anon_sym_SEMI, + [68905] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4436), 1, anon_sym_DQUOTE, - ACTIONS(4387), 1, + ACTIONS(4438), 1, aux_sym_string_literal_token1, - ACTIONS(4389), 1, + ACTIONS(4440), 1, sym_escape_sequence, - STATE(1718), 1, + STATE(1862), 1, aux_sym_string_literal_repeat1, - [66227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4391), 1, - anon_sym___except, - ACTIONS(4393), 1, - anon_sym___finally, - STATE(309), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66241] = 4, + [68921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4395), 1, + ACTIONS(4442), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1849), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66255] = 5, - ACTIONS(3619), 1, + [68935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + STATE(2023), 1, + sym_argument_list, + ACTIONS(4444), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [68949] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4446), 1, + aux_sym_preproc_include_token2, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4450), 1, + sym_preproc_arg, + STATE(2035), 1, + sym_preproc_params, + [68965] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4452), 1, + aux_sym_preproc_include_token2, + ACTIONS(4454), 1, + sym_preproc_arg, + STATE(2085), 1, + sym_preproc_params, + [68981] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4456), 1, anon_sym_DQUOTE, - ACTIONS(4399), 1, + ACTIONS(4458), 1, aux_sym_string_literal_token1, - ACTIONS(4402), 1, + ACTIONS(4460), 1, sym_escape_sequence, - STATE(1718), 1, + STATE(1872), 1, aux_sym_string_literal_repeat1, - [66271] = 4, - ACTIONS(3619), 1, + [68997] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4405), 1, - anon_sym_SQUOTE, - STATE(1719), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4407), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66285] = 2, + ACTIONS(3970), 1, + anon_sym_COMMA, + STATE(1812), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4462), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [69011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_identifier, - [66295] = 4, + ACTIONS(3970), 1, + anon_sym_COMMA, + STATE(1812), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4464), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [69025] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_COMMA, + STATE(1812), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4469), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [69039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4410), 1, + ACTIONS(4471), 1, anon_sym_SEMI, - STATE(1736), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66309] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4387), 1, - aux_sym_string_literal_token1, - ACTIONS(4389), 1, - sym_escape_sequence, - ACTIONS(4412), 1, - anon_sym_DQUOTE, - STATE(1718), 1, - aux_sym_string_literal_repeat1, - [66325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym___except, - ACTIONS(4416), 1, - anon_sym___finally, - STATE(248), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66339] = 4, + [69053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4418), 1, + ACTIONS(4473), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66353] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4420), 1, - anon_sym_DQUOTE, - ACTIONS(4422), 1, - aux_sym_string_literal_token1, - ACTIONS(4424), 1, - sym_escape_sequence, - STATE(1755), 1, - aux_sym_string_literal_repeat1, - [66369] = 4, + [69067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4475), 1, anon_sym_COMMA, - STATE(1775), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4428), 2, + STATE(1815), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4478), 2, anon_sym_RPAREN, anon_sym_COLON, - [66383] = 4, + [69081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4480), 1, + anon_sym_SEMI, + STATE(1851), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4482), 1, anon_sym___except, - ACTIONS(4432), 1, + ACTIONS(4484), 1, + anon_sym___finally, + STATE(351), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym___except, + ACTIONS(4488), 1, anon_sym___finally, - STATE(348), 2, + STATE(349), 2, sym_seh_except_clause, sym_seh_finally_clause, - [66397] = 4, - ACTIONS(3619), 1, + [69123] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DQUOTE, + ACTIONS(4492), 1, + aux_sym_string_literal_token1, + ACTIONS(4494), 1, + sym_escape_sequence, + STATE(1846), 1, + aux_sym_string_literal_repeat1, + [69139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4496), 1, + anon_sym_SEMI, + STATE(1737), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69153] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4434), 1, + ACTIONS(4498), 1, anon_sym_SQUOTE, - STATE(1719), 1, + STATE(1865), 1, aux_sym_char_literal_repeat1, - ACTIONS(4436), 2, + ACTIONS(4500), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66411] = 4, + [69167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(3952), 1, + sym_identifier, + ACTIONS(4502), 1, + aux_sym_preproc_if_token2, + STATE(1676), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2334), 1, + sym_enumerator, + [69183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + sym_identifier, + ACTIONS(4504), 1, + aux_sym_preproc_if_token2, + STATE(1692), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [69197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, anon_sym_COMMA, - STATE(1729), 1, + STATE(1824), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4441), 2, + ACTIONS(4509), 2, anon_sym_SEMI, anon_sym___attribute__, - [66425] = 4, + [69211] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4511), 1, + anon_sym_SEMI, + STATE(1737), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69225] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4513), 1, + aux_sym_preproc_include_token2, + ACTIONS(4515), 1, + sym_preproc_arg, + STATE(2103), 1, + sym_preproc_params, + [69241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4519), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69255] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + aux_sym_preproc_include_token2, + ACTIONS(4523), 1, + sym_preproc_arg, + STATE(2105), 1, + sym_preproc_params, + [69271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [69281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3919), 1, + sym_identifier, + ACTIONS(4525), 1, + aux_sym_preproc_if_token2, + STATE(1823), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [69295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4443), 1, + ACTIONS(4527), 1, anon_sym_SEMI, - STATE(1766), 2, + STATE(1813), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66439] = 4, + [69309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4445), 1, - anon_sym_SEMI, - STATE(1745), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66453] = 4, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, + anon_sym_LBRACK, + ACTIONS(4529), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym_parameter_list, + [69325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [69335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, + ACTIONS(4533), 1, anon_sym___except, - ACTIONS(4449), 1, + ACTIONS(4535), 1, anon_sym___finally, - STATE(194), 2, + STATE(351), 2, sym_seh_except_clause, sym_seh_finally_clause, - [66467] = 4, + [69349] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4537), 1, + anon_sym_DQUOTE, + ACTIONS(4539), 1, + aux_sym_string_literal_token1, + ACTIONS(4541), 1, + sym_escape_sequence, + STATE(1860), 1, + aux_sym_string_literal_repeat1, + [69365] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + anon_sym_COMMA, + STATE(1815), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4543), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4451), 1, + ACTIONS(4545), 1, anon_sym_SEMI, - STATE(1753), 2, + STATE(1814), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66481] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(4453), 1, - aux_sym_preproc_if_token2, - STATE(1611), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [66495] = 4, + [69393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(4547), 1, anon_sym_COMMA, - STATE(1714), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4457), 2, + STATE(1838), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4550), 2, anon_sym_RPAREN, anon_sym_COLON, - [66509] = 4, + [69407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4459), 1, + ACTIONS(4552), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66523] = 5, - ACTIONS(3619), 1, + [69421] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4461), 1, - aux_sym_preproc_include_token2, - ACTIONS(4463), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4465), 1, + ACTIONS(4554), 1, + aux_sym_preproc_include_token2, + ACTIONS(4556), 1, sym_preproc_arg, - STATE(1993), 1, + STATE(2112), 1, sym_preproc_params, - [66539] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4467), 1, - anon_sym_DQUOTE, - ACTIONS(4469), 1, - aux_sym_string_literal_token1, - ACTIONS(4471), 1, - sym_escape_sequence, - STATE(1722), 1, - aux_sym_string_literal_repeat1, - [66555] = 4, + [69437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - STATE(1937), 1, - sym_argument_list, - ACTIONS(4473), 2, + ACTIONS(4558), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [66569] = 4, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4475), 1, - anon_sym_SQUOTE, - STATE(1719), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4436), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66583] = 4, + STATE(1841), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4561), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [69451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4477), 1, + ACTIONS(4563), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1858), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66597] = 4, + [69465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, - anon_sym_COMMA, - STATE(1742), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4482), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 1, + ACTIONS(4565), 1, anon_sym___except, - ACTIONS(4486), 1, + ACTIONS(4567), 1, anon_sym___finally, - STATE(348), 2, + STATE(204), 2, sym_seh_except_clause, sym_seh_finally_clause, - [66625] = 4, + [69479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4488), 1, + ACTIONS(4569), 4, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1759), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66639] = 4, + anon_sym_asm, + anon_sym___asm__, + [69489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4490), 1, + ACTIONS(4571), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1863), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66653] = 4, + [69503] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4573), 1, + anon_sym_DQUOTE, + ACTIONS(4575), 1, + aux_sym_string_literal_token1, + ACTIONS(4578), 1, + sym_escape_sequence, + STATE(1846), 1, + aux_sym_string_literal_repeat1, + [69519] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4448), 1, + anon_sym_LPAREN, + ACTIONS(4581), 1, + aux_sym_preproc_include_token2, + ACTIONS(4583), 1, + sym_preproc_arg, + STATE(2110), 1, + sym_preproc_params, + [69535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(4585), 1, anon_sym_COMMA, - STATE(1773), 1, + STATE(1841), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4494), 2, + ACTIONS(4587), 2, anon_sym_RPAREN, anon_sym_COLON, - [66667] = 4, + [69549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4499), 2, - anon_sym_SEMI, + ACTIONS(3880), 1, anon_sym___attribute__, - [66681] = 4, + ACTIONS(4589), 1, + anon_sym_SEMI, + STATE(1737), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69563] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3952), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4501), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [66695] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4503), 1, - anon_sym_DQUOTE, - ACTIONS(4505), 1, - aux_sym_string_literal_token1, - ACTIONS(4507), 1, - sym_escape_sequence, - STATE(1715), 1, - aux_sym_string_literal_repeat1, - [66711] = 4, + sym_identifier, + ACTIONS(4420), 1, + aux_sym_preproc_if_token2, + STATE(1822), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2334), 1, + sym_enumerator, + [69579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4509), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66725] = 4, + [69593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4511), 1, - anon_sym_SEMI, - STATE(1741), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66739] = 4, + ACTIONS(3942), 1, + anon_sym_LPAREN2, + ACTIONS(4304), 1, + anon_sym_LBRACK, + ACTIONS(4593), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym_parameter_list, + [69609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(4595), 1, + anon_sym___except, + ACTIONS(4597), 1, + anon_sym___finally, + STATE(282), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3970), 1, anon_sym_COMMA, - STATE(1748), 1, + STATE(1810), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4513), 2, + ACTIONS(4599), 2, anon_sym_SEMI, anon_sym___attribute__, - [66753] = 4, + [69637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4515), 1, + ACTIONS(4601), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66767] = 4, + [69651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, - anon_sym_COMMA, - STATE(1747), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4517), 2, - anon_sym_SEMI, + ACTIONS(3880), 1, anon_sym___attribute__, - [66781] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4387), 1, - aux_sym_string_literal_token1, - ACTIONS(4389), 1, - sym_escape_sequence, - ACTIONS(4519), 1, - anon_sym_DQUOTE, - STATE(1718), 1, - aux_sym_string_literal_repeat1, - [66797] = 5, - ACTIONS(3619), 1, + ACTIONS(4603), 1, + anon_sym_SEMI, + STATE(1839), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69665] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_DQUOTE, - ACTIONS(4523), 1, - aux_sym_string_literal_token1, - ACTIONS(4525), 1, + ACTIONS(4605), 1, + anon_sym_SQUOTE, + STATE(1865), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4500), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(1782), 1, - aux_sym_string_literal_repeat1, - [66813] = 4, + [69679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4527), 1, + ACTIONS(4607), 1, anon_sym_SEMI, - STATE(1717), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66827] = 5, + [69693] = 4, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4609), 1, + anon_sym_SQUOTE, + STATE(1865), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4500), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [69707] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4492), 1, + aux_sym_string_literal_token1, + ACTIONS(4494), 1, + sym_escape_sequence, + ACTIONS(4611), 1, + anon_sym_DQUOTE, + STATE(1846), 1, + aux_sym_string_literal_repeat1, + [69723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 1, + ACTIONS(4613), 1, anon_sym_COMMA, - ACTIONS(4531), 1, + ACTIONS(4615), 1, anon_sym_RPAREN, - STATE(1798), 1, + STATE(1909), 1, aux_sym__old_style_parameter_list_repeat1, - STATE(1813), 1, + STATE(1934), 1, aux_sym_parameter_list_repeat1, - [66843] = 4, + [69739] = 5, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4492), 1, + aux_sym_string_literal_token1, + ACTIONS(4494), 1, + sym_escape_sequence, + ACTIONS(4617), 1, + anon_sym_DQUOTE, + STATE(1846), 1, + aux_sym_string_literal_repeat1, + [69755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4533), 1, + ACTIONS(4619), 1, anon_sym_SEMI, - STATE(1646), 2, + STATE(1737), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [66857] = 4, + [69769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4455), 1, + ACTIONS(4621), 1, anon_sym_COMMA, - STATE(1735), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4535), 2, + STATE(1838), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4623), 2, anon_sym_RPAREN, anon_sym_COLON, - [66871] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - aux_sym_preproc_include_token2, - ACTIONS(4539), 1, - sym_preproc_arg, - STATE(1911), 1, - sym_preproc_params, - [66887] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_LPAREN, - ACTIONS(4541), 1, - aux_sym_preproc_include_token2, - ACTIONS(4543), 1, - sym_preproc_arg, - STATE(1989), 1, - sym_preproc_params, - [66903] = 4, - ACTIONS(3619), 1, + [69783] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4545), 1, + ACTIONS(4625), 1, anon_sym_SQUOTE, - STATE(1719), 1, + STATE(1865), 1, aux_sym_char_literal_repeat1, - ACTIONS(4436), 2, + ACTIONS(4627), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66917] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4547), 1, - anon_sym_SEMI, - STATE(1646), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66931] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3881), 1, - sym_identifier, - ACTIONS(4549), 1, - aux_sym_preproc_if_token2, - STATE(1734), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [66945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4551), 1, - anon_sym_SEMI, - STATE(1646), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66959] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(4356), 1, - aux_sym_preproc_if_token2, - STATE(1784), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2267), 1, - sym_enumerator, - [66975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4553), 1, - anon_sym_SEMI, - STATE(1724), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66989] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_LPAREN, - ACTIONS(4555), 1, - aux_sym_preproc_include_token2, - ACTIONS(4557), 1, - sym_preproc_arg, - STATE(1995), 1, - sym_preproc_params, - [67005] = 5, - ACTIONS(3619), 1, + [69797] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4559), 1, + ACTIONS(4630), 1, aux_sym_preproc_include_token2, - ACTIONS(4561), 1, + ACTIONS(4632), 1, sym_preproc_arg, - STATE(1912), 1, + STATE(2055), 1, sym_preproc_params, - [67021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 1, - anon_sym___except, - ACTIONS(4565), 1, - anon_sym___finally, - STATE(116), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [67035] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4492), 1, - anon_sym_COMMA, - STATE(1746), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4567), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [67049] = 4, + [69813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 1, + ACTIONS(4053), 1, anon_sym_COMMA, - STATE(1773), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4572), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [67063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4574), 1, + STATE(1824), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4634), 2, anon_sym_SEMI, - STATE(1764), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [67077] = 4, + anon_sym___attribute__, + [69827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4621), 1, anon_sym_COMMA, - STATE(1742), 1, + STATE(1864), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4576), 2, + ACTIONS(4636), 2, anon_sym_RPAREN, anon_sym_COLON, - [67091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4578), 1, - anon_sym_SEMI, - STATE(1750), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [67105] = 5, - ACTIONS(3619), 1, + [69841] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4580), 1, + ACTIONS(4638), 1, aux_sym_preproc_include_token2, - ACTIONS(4582), 1, + ACTIONS(4640), 1, sym_preproc_arg, - STATE(2005), 1, + STATE(2115), 1, sym_preproc_params, - [67121] = 2, + [69857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 4, - anon_sym_COMMA, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4642), 1, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [67131] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_LPAREN, - ACTIONS(4586), 1, - aux_sym_preproc_include_token2, - ACTIONS(4588), 1, - sym_preproc_arg, - STATE(1992), 1, - sym_preproc_params, - [67147] = 5, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4463), 1, - anon_sym_LPAREN, - ACTIONS(4590), 1, - aux_sym_preproc_include_token2, - ACTIONS(4592), 1, - sym_preproc_arg, - STATE(2007), 1, - sym_preproc_params, - [67163] = 4, - ACTIONS(3619), 1, + STATE(1825), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69871] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(4644), 1, anon_sym_SQUOTE, - STATE(1719), 1, + STATE(1865), 1, aux_sym_char_literal_repeat1, - ACTIONS(4436), 2, + ACTIONS(4500), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [67177] = 5, - ACTIONS(3619), 1, + [69885] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4387), 1, + ACTIONS(4492), 1, aux_sym_string_literal_token1, - ACTIONS(4389), 1, + ACTIONS(4494), 1, sym_escape_sequence, - ACTIONS(4596), 1, + ACTIONS(4646), 1, anon_sym_DQUOTE, - STATE(1718), 1, + STATE(1846), 1, aux_sym_string_literal_repeat1, - [67193] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3924), 1, - anon_sym_LPAREN2, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4598), 1, - anon_sym_RPAREN, - STATE(1711), 1, - sym_parameter_list, - [67209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3928), 1, - sym_identifier, - ACTIONS(4600), 1, - aux_sym_preproc_if_token2, - STATE(1610), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2267), 1, - sym_enumerator, - [67225] = 5, - ACTIONS(3619), 1, + [69901] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4463), 1, + ACTIONS(4448), 1, anon_sym_LPAREN, - ACTIONS(4602), 1, + ACTIONS(4648), 1, aux_sym_preproc_include_token2, - ACTIONS(4604), 1, + ACTIONS(4650), 1, sym_preproc_arg, - STATE(1934), 1, + STATE(2075), 1, sym_preproc_params, - [67241] = 4, + [69917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, - anon_sym_COMMA, - ACTIONS(4606), 1, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4652), 1, anon_sym_SEMI, - STATE(1856), 1, - aux_sym_declaration_repeat1, - [67254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3380), 1, - anon_sym_COMMA, - ACTIONS(3382), 1, - anon_sym_RBRACE, - STATE(1897), 1, - aux_sym_initializer_list_repeat1, - [67267] = 4, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4608), 1, - aux_sym_preproc_include_token2, - ACTIONS(4610), 1, - anon_sym_LPAREN2, - STATE(2186), 1, - sym_preproc_argument_list, - [67280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2065), 1, - anon_sym_RBRACE, - ACTIONS(4612), 1, - anon_sym_COMMA, - STATE(1826), 1, - aux_sym_initializer_list_repeat1, - [67293] = 2, + STATE(1855), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 3, + ACTIONS(4585), 1, anon_sym_COMMA, + STATE(1848), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4654), 2, anon_sym_RPAREN, anon_sym_COLON, - [67302] = 2, + [69945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [67311] = 4, - ACTIONS(3), 1, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4656), 1, + anon_sym_SEMI, + STATE(1820), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [69959] = 5, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4618), 1, - anon_sym_COMMA, - ACTIONS(4621), 1, - anon_sym_RPAREN, - STATE(1792), 1, - aux_sym_parameter_list_repeat1, - [67324] = 4, + ACTIONS(4658), 1, + anon_sym_DQUOTE, + ACTIONS(4660), 1, + aux_sym_string_literal_token1, + ACTIONS(4662), 1, + sym_escape_sequence, + STATE(1819), 1, + aux_sym_string_literal_repeat1, + [69975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, - anon_sym_RPAREN, - ACTIONS(4625), 1, - anon_sym_COLON, - STATE(1884), 1, - sym_gnu_asm_clobber_list, - [67337] = 4, + ACTIONS(4664), 1, + anon_sym___except, + ACTIONS(4666), 1, + anon_sym___finally, + STATE(130), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [69989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4630), 1, - anon_sym_RPAREN, - STATE(1794), 1, - aux_sym_preproc_params_repeat1, - [67350] = 4, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, - anon_sym_RPAREN, - ACTIONS(4632), 1, - anon_sym_COMMA, - STATE(1795), 1, - aux_sym_preproc_argument_list_repeat1, - [67363] = 4, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(4670), 1, + sym_identifier, + STATE(1390), 1, + sym_enumerator_list, + [70015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 1, - anon_sym_RPAREN, - ACTIONS(4635), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67376] = 4, + ACTIONS(4672), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4638), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67389] = 4, + ACTIONS(4674), 1, + anon_sym_SEMI, + STATE(1918), 1, + aux_sym_declaration_repeat1, + [70041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4642), 1, - anon_sym_RPAREN, - STATE(1816), 1, - aux_sym__old_style_parameter_list_repeat1, - [67402] = 4, + ACTIONS(4676), 1, + anon_sym_SEMI, + STATE(1879), 1, + aux_sym_declaration_repeat1, + [70054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4646), 1, + ACTIONS(4680), 1, anon_sym_RBRACK_RBRACK, - STATE(1832), 1, + STATE(1967), 1, aux_sym_attribute_declaration_repeat1, - [67415] = 4, + [70067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2095), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4648), 1, - sym_identifier, - STATE(1908), 1, - sym_variadic_parameter, - [67428] = 4, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4682), 1, + anon_sym_SEMI, + STATE(1910), 1, + aux_sym_declaration_repeat1, + [70080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(4684), 1, anon_sym_RPAREN, - ACTIONS(4652), 1, - anon_sym_COLON, - STATE(1793), 1, - sym_gnu_asm_input_operand_list, - [67441] = 4, + STATE(1894), 1, + aux_sym_argument_list_repeat1, + [70093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 1, - anon_sym_COLON, - ACTIONS(4654), 1, + ACTIONS(4686), 1, anon_sym_RPAREN, - STATE(1812), 1, - sym_gnu_asm_clobber_list, - [67454] = 4, + ACTIONS(4688), 1, + anon_sym_COLON, + STATE(1914), 1, + sym_gnu_asm_output_operand_list, + [70106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(4656), 1, - sym_identifier, - STATE(1208), 1, - sym_enumerator_list, - [67467] = 3, - ACTIONS(3619), 1, - sym_comment, - STATE(1728), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4658), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67478] = 4, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3410), 1, + anon_sym_RPAREN, + STATE(2004), 1, + aux_sym_argument_list_repeat1, + [70119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4660), 1, - anon_sym_RBRACK_RBRACK, - STATE(1799), 1, - aux_sym_attribute_declaration_repeat1, - [67491] = 4, + ACTIONS(4690), 1, + anon_sym_SEMI, + STATE(1922), 1, + aux_sym_declaration_repeat1, + [70132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4662), 1, + ACTIONS(4692), 1, anon_sym_SEMI, - STATE(1838), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [67504] = 4, + [70145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(4664), 1, + ACTIONS(4694), 1, + anon_sym_RPAREN, + STATE(1894), 1, + aux_sym_argument_list_repeat1, + [70158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4696), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [67517] = 3, + [70171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, - anon_sym_EQ, - ACTIONS(4155), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67528] = 4, + ACTIONS(4698), 1, + anon_sym_RPAREN, + ACTIONS(4700), 1, + anon_sym_COLON, + STATE(2417), 1, + sym_gnu_asm_goto_list, + [70184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(3500), 1, + anon_sym_RPAREN, + ACTIONS(4702), 1, anon_sym_COMMA, - ACTIONS(4668), 1, - anon_sym_SEMI, - STATE(1814), 1, - aux_sym_declaration_repeat1, - [67541] = 4, + STATE(1894), 1, + aux_sym_argument_list_repeat1, + [70197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3360), 1, + ACTIONS(3737), 1, + anon_sym_RPAREN, + ACTIONS(4705), 1, anon_sym_COMMA, - ACTIONS(3362), 1, - anon_sym_RBRACE, - STATE(1789), 1, - aux_sym_initializer_list_repeat1, - [67554] = 3, - ACTIONS(3619), 1, + STATE(1895), 1, + aux_sym_preproc_argument_list_repeat1, + [70210] = 4, + ACTIONS(3595), 1, sym_comment, - STATE(1740), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4670), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67565] = 4, + ACTIONS(4708), 1, + aux_sym_preproc_include_token2, + ACTIONS(4710), 1, + anon_sym_LPAREN2, + STATE(2311), 1, + sym_preproc_argument_list, + [70223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4672), 1, - anon_sym_RPAREN, - ACTIONS(4674), 1, - anon_sym_COLON, - STATE(2165), 1, - sym_gnu_asm_goto_list, - [67578] = 4, + ACTIONS(3406), 1, + anon_sym_COMMA, + ACTIONS(3408), 1, + anon_sym_RBRACE, + STATE(1938), 1, + aux_sym_initializer_list_repeat1, + [70236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4712), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4715), 1, anon_sym_RPAREN, - STATE(1792), 1, - aux_sym_parameter_list_repeat1, - [67591] = 4, + STATE(1898), 1, + aux_sym_preproc_params_repeat1, + [70249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4683), 1, + ACTIONS(4717), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [67604] = 4, + [70262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4685), 1, + ACTIONS(4719), 1, anon_sym_SEMI, - STATE(1809), 1, + STATE(1892), 1, aux_sym_declaration_repeat1, - [67617] = 4, + [70275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 1, - anon_sym_COMMA, - ACTIONS(4690), 1, + ACTIONS(4688), 1, + anon_sym_COLON, + ACTIONS(4721), 1, anon_sym_RPAREN, - STATE(1816), 1, - aux_sym__old_style_parameter_list_repeat1, - [67630] = 4, + STATE(1928), 1, + sym_gnu_asm_output_operand_list, + [70288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4694), 1, - anon_sym_RPAREN, - STATE(1794), 1, - aux_sym_preproc_params_repeat1, - [67643] = 3, - ACTIONS(3619), 1, - sym_comment, - STATE(1781), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4696), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67654] = 2, + ACTIONS(4723), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4698), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [67663] = 4, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4725), 1, + anon_sym_SEMI, + STATE(1923), 1, + aux_sym_declaration_repeat1, + [70314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2697), 1, anon_sym_LBRACE, - ACTIONS(4700), 1, + ACTIONS(4727), 1, sym_identifier, - STATE(1075), 1, + STATE(968), 1, sym_field_declaration_list, - [67676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3585), 1, - anon_sym_COMMA, - ACTIONS(4702), 1, - anon_sym_RPAREN, - STATE(1795), 1, - aux_sym_preproc_argument_list_repeat1, - [67689] = 2, + [70327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 3, + ACTIONS(4729), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [67698] = 4, + [70336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(3378), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [67711] = 4, + ACTIONS(4731), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4706), 1, + ACTIONS(4733), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [67724] = 4, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4610), 1, - anon_sym_LPAREN2, - ACTIONS(4708), 1, - aux_sym_preproc_include_token2, - STATE(2186), 1, - sym_preproc_argument_list, - [67737] = 4, + [70362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 1, - anon_sym_RBRACE, - ACTIONS(4710), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - STATE(1826), 1, - aux_sym_initializer_list_repeat1, - [67750] = 4, + ACTIONS(4735), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4713), 1, + ACTIONS(4737), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, anon_sym_RPAREN, - ACTIONS(4715), 1, - anon_sym_COLON, - STATE(1801), 1, - sym_gnu_asm_output_operand_list, - [67763] = 4, + STATE(1956), 1, + aux_sym__old_style_parameter_list_repeat1, + [70388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4719), 1, + ACTIONS(4741), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + anon_sym_COMMA, + ACTIONS(4745), 1, anon_sym_RPAREN, - STATE(1882), 1, + STATE(1979), 1, aux_sym_gnu_asm_goto_list_repeat1, - [67776] = 4, + [70414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, - anon_sym_COLON, - ACTIONS(4721), 1, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4747), 1, + anon_sym_SEMI, + STATE(1899), 1, + aux_sym_declaration_repeat1, + [70427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(4749), 1, + sym_identifier, + STATE(1390), 1, + sym_enumerator_list, + [70440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 1, anon_sym_RPAREN, - STATE(1802), 1, + ACTIONS(4753), 1, + anon_sym_COLON, + STATE(1931), 1, sym_gnu_asm_input_operand_list, - [67789] = 4, + [70453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3880), 1, anon_sym___attribute__, - ACTIONS(4723), 1, + ACTIONS(4755), 1, anon_sym_SEMI, - STATE(2223), 1, + STATE(2185), 1, sym_attribute_specifier, - [67802] = 4, + [70466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4757), 1, anon_sym_COMMA, - ACTIONS(4725), 1, - anon_sym_RBRACK_RBRACK, - STATE(1839), 1, - aux_sym_attribute_declaration_repeat1, - [67815] = 4, + ACTIONS(4760), 1, + anon_sym_RPAREN, + STATE(1916), 1, + aux_sym_parameter_list_repeat1, + [70479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(2017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4762), 1, + sym_identifier, + STATE(2096), 1, + sym_variadic_parameter, + [70492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4730), 1, - anon_sym_RBRACK_RBRACK, - STATE(1832), 1, - aux_sym_attribute_declaration_repeat1, - [67828] = 4, + ACTIONS(4764), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(4766), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4769), 1, anon_sym_RPAREN, - STATE(1840), 1, + STATE(1919), 1, aux_sym_generic_expression_repeat1, - [67841] = 4, + [70518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4734), 1, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4771), 1, anon_sym_SEMI, - STATE(2059), 1, - sym_attribute_specifier, - [67854] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(4736), 1, - sym_identifier, - STATE(1348), 1, - sym_enumerator_list, - [67867] = 4, + STATE(1935), 1, + aux_sym_declaration_repeat1, + [70531] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, - anon_sym_LBRACE, - ACTIONS(4738), 1, - sym_identifier, - STATE(1078), 1, - sym_field_declaration_list, - [67880] = 2, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4773), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4740), 3, + ACTIONS(4296), 1, anon_sym_COMMA, + ACTIONS(4775), 1, anon_sym_SEMI, - anon_sym___attribute__, - [67889] = 4, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(4777), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [67902] = 4, + [70570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4744), 1, + ACTIONS(4779), 1, anon_sym_RBRACK_RBRACK, - STATE(1832), 1, + STATE(1981), 1, aux_sym_attribute_declaration_repeat1, - [67915] = 4, + [70583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4746), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4749), 1, - anon_sym_RPAREN, - STATE(1840), 1, - aux_sym_generic_expression_repeat1, - [67928] = 4, + ACTIONS(4781), 1, + anon_sym_RBRACK_RBRACK, + STATE(1884), 1, + aux_sym_attribute_declaration_repeat1, + [70596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, + ACTIONS(3597), 1, anon_sym_COMMA, - ACTIONS(4751), 1, + ACTIONS(4783), 1, anon_sym_RPAREN, - STATE(1795), 1, + STATE(1895), 1, aux_sym_preproc_argument_list_repeat1, - [67941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2849), 1, - anon_sym_LBRACE, - ACTIONS(4753), 1, - sym_identifier, - STATE(1082), 1, - sym_field_declaration_list, - [67954] = 4, + [70609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - anon_sym_LBRACE, - ACTIONS(4755), 1, - sym_identifier, - STATE(1348), 1, - sym_enumerator_list, - [67967] = 2, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4785), 1, + anon_sym_SEMI, + STATE(1943), 1, + aux_sym_declaration_repeat1, + [70622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4753), 1, anon_sym_COLON, - [67976] = 4, - ACTIONS(3619), 1, + ACTIONS(4787), 1, + anon_sym_RPAREN, + STATE(1989), 1, + sym_gnu_asm_input_operand_list, + [70635] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4610), 1, + ACTIONS(4710), 1, anon_sym_LPAREN2, - ACTIONS(4759), 1, + ACTIONS(4789), 1, aux_sym_preproc_include_token2, - STATE(2186), 1, + STATE(2311), 1, sym_preproc_argument_list, - [67989] = 3, - ACTIONS(3619), 1, + [70648] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1763), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4761), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [68000] = 2, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4791), 1, + anon_sym_SEMI, + STATE(1946), 1, + aux_sym_declaration_repeat1, + [70661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 1, + anon_sym_RPAREN, + ACTIONS(4795), 1, + anon_sym_COLON, + STATE(1893), 1, + sym_gnu_asm_clobber_list, + [70674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2697), 1, + anon_sym_LBRACE, + ACTIONS(4797), 1, + sym_identifier, + STATE(974), 1, + sym_field_declaration_list, + [70687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 3, + ACTIONS(4799), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68009] = 4, + [70696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4801), 1, anon_sym_COMMA, - ACTIONS(4765), 1, + ACTIONS(4803), 1, anon_sym_RPAREN, - STATE(1813), 1, + STATE(1916), 1, aux_sym_parameter_list_repeat1, - [68022] = 4, + [70709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4767), 1, + ACTIONS(4805), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68035] = 4, + [70722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4807), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [70731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4769), 1, + ACTIONS(4809), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68048] = 4, + [70744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(2091), 1, + anon_sym_RBRACE, + ACTIONS(4811), 1, anon_sym_COMMA, - ACTIONS(4771), 1, + STATE(1962), 1, + aux_sym_initializer_list_repeat1, + [70757] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4813), 1, anon_sym_SEMI, - STATE(1814), 1, - aux_sym_declaration_repeat1, - [68061] = 4, + STATE(2215), 1, + sym_attribute_specifier, + [70770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4773), 1, + ACTIONS(4815), 1, anon_sym_SEMI, - STATE(1849), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68074] = 4, + [70783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4775), 1, + ACTIONS(4817), 1, anon_sym_SEMI, - STATE(1850), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68087] = 4, + [70796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(4777), 1, - anon_sym_RBRACK_RBRACK, - STATE(1867), 1, - aux_sym_attribute_declaration_repeat1, - [68100] = 4, + ACTIONS(3404), 1, + anon_sym_RPAREN, + STATE(1977), 1, + aux_sym_argument_list_repeat1, + [70809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4779), 1, + ACTIONS(4819), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68113] = 4, + [70822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4781), 1, + ACTIONS(4821), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1948), 1, aux_sym_declaration_repeat1, - [68126] = 4, + [70835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4823), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68139] = 4, + [70848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4785), 1, + ACTIONS(4825), 1, anon_sym_SEMI, - STATE(1855), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68152] = 2, + [70861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 3, + ACTIONS(4296), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68161] = 4, + ACTIONS(4827), 1, + anon_sym_SEMI, + STATE(1906), 1, + aux_sym_declaration_repeat1, + [70874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4789), 1, + ACTIONS(4829), 1, anon_sym_SEMI, - STATE(1874), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68174] = 4, + [70887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4791), 1, + ACTIONS(4831), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1950), 1, aux_sym_declaration_repeat1, - [68187] = 4, + [70900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4833), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [70913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4835), 3, anon_sym_COMMA, - ACTIONS(4793), 1, anon_sym_RPAREN, - STATE(1817), 1, - aux_sym_preproc_params_repeat1, - [68200] = 2, + anon_sym_COLON, + [70922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4795), 3, + ACTIONS(4837), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68209] = 4, + [70931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(3392), 1, anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_SEMI, - STATE(1814), 1, - aux_sym_declaration_repeat1, - [68222] = 4, + ACTIONS(4839), 1, + anon_sym_RPAREN, + STATE(1919), 1, + aux_sym_generic_expression_repeat1, + [70944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4799), 1, + ACTIONS(4841), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68235] = 4, + [70957] = 3, + ACTIONS(3595), 1, + sym_comment, + STATE(1821), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4843), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [70968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4845), 1, anon_sym_COMMA, - ACTIONS(4801), 1, - anon_sym_SEMI, - STATE(1861), 1, - aux_sym_declaration_repeat1, - [68248] = 4, + ACTIONS(4848), 1, + anon_sym_RPAREN, + STATE(1956), 1, + aux_sym__old_style_parameter_list_repeat1, + [70981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4803), 1, + ACTIONS(4850), 1, anon_sym_RBRACK_RBRACK, - STATE(1832), 1, + STATE(1967), 1, aux_sym_attribute_declaration_repeat1, - [68261] = 4, + [70994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, - anon_sym_COLON, - ACTIONS(4805), 1, - anon_sym_RPAREN, - STATE(1829), 1, - sym_gnu_asm_output_operand_list, - [68274] = 2, + ACTIONS(4852), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [71003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 3, + ACTIONS(4296), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68283] = 4, + ACTIONS(4854), 1, + anon_sym_SEMI, + STATE(1937), 1, + aux_sym_declaration_repeat1, + [71016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4809), 1, + ACTIONS(4856), 1, anon_sym_SEMI, - STATE(1864), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68296] = 4, + [71029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, - anon_sym_COLON, - ACTIONS(4811), 1, - anon_sym_RPAREN, - STATE(1889), 1, - sym_gnu_asm_output_operand_list, - [68309] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4813), 1, + ACTIONS(4858), 1, anon_sym_SEMI, - STATE(1893), 1, + STATE(1976), 1, aux_sym_declaration_repeat1, - [68322] = 4, + [71042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(3484), 1, + anon_sym_RBRACE, + ACTIONS(4860), 1, anon_sym_COMMA, - ACTIONS(4815), 1, - anon_sym_SEMI, - STATE(1814), 1, - aux_sym_declaration_repeat1, - [68335] = 4, + STATE(1962), 1, + aux_sym_initializer_list_repeat1, + [71055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4678), 1, anon_sym_COMMA, - ACTIONS(4817), 1, + ACTIONS(4863), 1, + anon_sym_RBRACK_RBRACK, + STATE(1957), 1, + aux_sym_attribute_declaration_repeat1, + [71068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4865), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1985), 1, aux_sym_declaration_repeat1, - [68348] = 4, + [71081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(4867), 1, anon_sym_COMMA, - ACTIONS(3366), 1, + ACTIONS(4870), 1, anon_sym_RPAREN, - STATE(1900), 1, - aux_sym_argument_list_repeat1, - [68361] = 4, - ACTIONS(3619), 1, + STATE(1965), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [71094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4872), 1, + anon_sym_COMMA, + ACTIONS(4874), 1, + anon_sym_RPAREN, + STATE(1984), 1, + aux_sym_preproc_params_repeat1, + [71107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, + anon_sym_COMMA, + ACTIONS(4879), 1, + anon_sym_RBRACK_RBRACK, + STATE(1967), 1, + aux_sym_attribute_declaration_repeat1, + [71120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2697), 1, + anon_sym_LBRACE, + ACTIONS(4881), 1, + sym_identifier, + STATE(959), 1, + sym_field_declaration_list, + [71133] = 4, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4610), 1, + ACTIONS(4710), 1, anon_sym_LPAREN2, - ACTIONS(4819), 1, + ACTIONS(4883), 1, aux_sym_preproc_include_token2, - STATE(2186), 1, + STATE(2311), 1, sym_preproc_argument_list, - [68374] = 4, + [71146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 1, + ACTIONS(4885), 1, anon_sym_COMMA, - ACTIONS(4824), 1, + ACTIONS(4888), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4892), 1, anon_sym_RPAREN, - STATE(1877), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [68387] = 4, + ACTIONS(4890), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [71170] = 4, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4710), 1, + anon_sym_LPAREN2, + ACTIONS(4894), 1, + aux_sym_preproc_include_token2, + STATE(2311), 1, + sym_preproc_argument_list, + [71183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 1, + ACTIONS(4896), 1, + anon_sym_EQ, + ACTIONS(4148), 2, anon_sym_COMMA, - ACTIONS(4826), 1, - anon_sym_RPAREN, - STATE(1840), 1, - aux_sym_generic_expression_repeat1, - [68400] = 4, + anon_sym_RBRACE, + [71194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, - anon_sym_COLON, - ACTIONS(4828), 1, + ACTIONS(4898), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2109), 1, - sym_gnu_asm_goto_list, - [68413] = 2, + anon_sym_COLON, + [71203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 3, + ACTIONS(4900), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [68422] = 4, + [71212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4832), 1, + ACTIONS(4902), 1, anon_sym_SEMI, - STATE(1906), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68435] = 4, + [71225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 1, + ACTIONS(3396), 1, + anon_sym_COMMA, + ACTIONS(3398), 1, + anon_sym_RPAREN, + STATE(1894), 1, + aux_sym_argument_list_repeat1, + [71238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3597), 1, + anon_sym_COMMA, + ACTIONS(4904), 1, + anon_sym_RPAREN, + STATE(1895), 1, + aux_sym_preproc_argument_list_repeat1, + [71251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, anon_sym_COMMA, - ACTIONS(4834), 1, + ACTIONS(4906), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1965), 1, aux_sym_gnu_asm_goto_list_repeat1, - [68448] = 4, - ACTIONS(3619), 1, + [71264] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 1, - anon_sym_LPAREN2, - ACTIONS(4836), 1, - aux_sym_preproc_include_token2, - STATE(2186), 1, - sym_preproc_argument_list, - [68461] = 4, + ACTIONS(3105), 1, + anon_sym_LBRACE, + ACTIONS(4908), 1, + sym_identifier, + STATE(1153), 1, + sym_enumerator_list, + [71277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4678), 1, + anon_sym_COMMA, + ACTIONS(4910), 1, + anon_sym_RBRACK_RBRACK, + STATE(1967), 1, + aux_sym_attribute_declaration_repeat1, + [71290] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3392), 1, + anon_sym_COMMA, + ACTIONS(4912), 1, + anon_sym_RPAREN, + STATE(1919), 1, + aux_sym_generic_expression_repeat1, + [71303] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 1, anon_sym_COLON, - ACTIONS(4838), 1, + ACTIONS(4914), 1, anon_sym_RPAREN, - STATE(2164), 1, + STATE(2241), 1, sym_gnu_asm_goto_list, - [68474] = 4, + [71316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4872), 1, anon_sym_COMMA, - ACTIONS(4840), 1, - anon_sym_SEMI, - STATE(1814), 1, - aux_sym_declaration_repeat1, - [68487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4844), 1, + ACTIONS(4916), 1, anon_sym_RPAREN, - ACTIONS(4842), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [68498] = 4, + STATE(1898), 1, + aux_sym_preproc_params_repeat1, + [71329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4846), 1, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4918), 1, anon_sym_SEMI, - STATE(2160), 1, - sym_attribute_specifier, - [68511] = 4, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, - anon_sym___attribute__, - ACTIONS(4848), 1, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4920), 1, anon_sym_SEMI, - STATE(2275), 1, - sym_attribute_specifier, - [68524] = 4, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4688), 1, anon_sym_COLON, - ACTIONS(4850), 1, + ACTIONS(4922), 1, anon_sym_RPAREN, - STATE(1903), 1, - sym_gnu_asm_input_operand_list, - [68537] = 4, + STATE(2014), 1, + sym_gnu_asm_output_operand_list, + [71368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 1, + ACTIONS(4795), 1, anon_sym_COLON, - ACTIONS(4852), 1, + ACTIONS(4924), 1, anon_sym_RPAREN, - STATE(1879), 1, + STATE(1983), 1, sym_gnu_asm_clobber_list, - [68550] = 4, + [71381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4715), 1, + ACTIONS(4795), 1, anon_sym_COLON, - ACTIONS(4854), 1, + ACTIONS(4926), 1, anon_sym_RPAREN, - STATE(1902), 1, - sym_gnu_asm_output_operand_list, - [68563] = 4, + STATE(2007), 1, + sym_gnu_asm_clobber_list, + [71394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4700), 1, anon_sym_COLON, - ACTIONS(4856), 1, + ACTIONS(4928), 1, anon_sym_RPAREN, - STATE(2147), 1, + STATE(2246), 1, sym_gnu_asm_goto_list, - [68576] = 4, + [71407] = 4, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4710), 1, + anon_sym_LPAREN2, + ACTIONS(4930), 1, + aux_sym_preproc_include_token2, + STATE(2311), 1, + sym_preproc_argument_list, + [71420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + anon_sym_RBRACE, + ACTIONS(4932), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_initializer_list_repeat1, + [71433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4858), 1, + ACTIONS(4934), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(2012), 1, aux_sym_declaration_repeat1, - [68589] = 4, + [71446] = 3, + ACTIONS(3595), 1, + sym_comment, + STATE(1871), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4936), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4860), 1, + ACTIONS(4938), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68602] = 4, + [71470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4862), 1, + ACTIONS(4940), 1, anon_sym_SEMI, - STATE(1824), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68615] = 4, + [71483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4864), 1, + ACTIONS(4942), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68628] = 4, + [71496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_RBRACE, - ACTIONS(4866), 1, - anon_sym_COMMA, - STATE(1826), 1, - aux_sym_initializer_list_repeat1, - [68641] = 4, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4944), 1, + anon_sym_RPAREN, + STATE(1988), 1, + sym_gnu_asm_input_operand_list, + [71509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4868), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1970), 1, aux_sym_declaration_repeat1, - [68654] = 4, + [71522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4795), 1, + anon_sym_COLON, + ACTIONS(4948), 1, + anon_sym_RPAREN, + STATE(1990), 1, + sym_gnu_asm_clobber_list, + [71535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(3400), 1, anon_sym_COMMA, - ACTIONS(4870), 1, + ACTIONS(3402), 1, + anon_sym_RBRACE, + STATE(1992), 1, + aux_sym_initializer_list_repeat1, + [71548] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4950), 1, anon_sym_SEMI, - STATE(1885), 1, + STATE(1954), 1, aux_sym_declaration_repeat1, - [68667] = 4, + [71561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3597), 1, anon_sym_COMMA, - ACTIONS(3374), 1, + ACTIONS(4952), 1, anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_argument_list_repeat1, - [68680] = 4, + STATE(1895), 1, + aux_sym_preproc_argument_list_repeat1, + [71574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(3396), 1, anon_sym_COMMA, - ACTIONS(4872), 1, + ACTIONS(3414), 1, anon_sym_RPAREN, - STATE(1796), 1, + STATE(1894), 1, aux_sym_argument_list_repeat1, - [68693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4652), 1, - anon_sym_COLON, - ACTIONS(4874), 1, - anon_sym_RPAREN, - STATE(1890), 1, - sym_gnu_asm_input_operand_list, - [68706] = 4, + [71587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 1, - anon_sym_COLON, - ACTIONS(4876), 1, - anon_sym_RPAREN, - STATE(1892), 1, - sym_gnu_asm_clobber_list, - [68719] = 4, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4954), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3364), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(3372), 1, - anon_sym_RPAREN, - STATE(1823), 1, - aux_sym_argument_list_repeat1, - [68732] = 4, + ACTIONS(4956), 1, + anon_sym_SEMI, + STATE(1986), 1, + aux_sym_declaration_repeat1, + [71613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3585), 1, - anon_sym_COMMA, - ACTIONS(4878), 1, + ACTIONS(4700), 1, + anon_sym_COLON, + ACTIONS(4958), 1, anon_sym_RPAREN, - STATE(1795), 1, - aux_sym_preproc_argument_list_repeat1, - [68745] = 4, + STATE(2366), 1, + sym_gnu_asm_goto_list, + [71626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4880), 1, + ACTIONS(4960), 1, anon_sym_SEMI, - STATE(1814), 1, + STATE(1995), 1, aux_sym_declaration_repeat1, - [68758] = 4, + [71639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 1, + ACTIONS(4296), 1, anon_sym_COMMA, - ACTIONS(4882), 1, + ACTIONS(4962), 1, anon_sym_SEMI, - STATE(1894), 1, + STATE(1997), 1, aux_sym_declaration_repeat1, - [68771] = 2, + [71652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 2, + ACTIONS(4296), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [68779] = 2, + ACTIONS(4964), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 2, - anon_sym_COMMA, + ACTIONS(4688), 1, + anon_sym_COLON, + ACTIONS(4966), 1, anon_sym_RPAREN, - [68787] = 3, + STATE(1998), 1, + sym_gnu_asm_output_operand_list, + [71678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(378), 1, - sym_compound_statement, - [68797] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4886), 1, - aux_sym_preproc_include_token2, - ACTIONS(4888), 1, - sym_preproc_arg, - [68807] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4890), 1, - aux_sym_preproc_include_token2, - ACTIONS(4892), 1, - sym_preproc_arg, - [68817] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4894), 1, - aux_sym_preproc_include_token2, - ACTIONS(4896), 1, - sym_preproc_arg, - [68827] = 2, + ACTIONS(4296), 1, + anon_sym_COMMA, + ACTIONS(4968), 1, + anon_sym_SEMI, + STATE(1970), 1, + aux_sym_declaration_repeat1, + [71691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 2, - anon_sym_COMMA, + ACTIONS(3390), 3, anon_sym_RPAREN, - [68835] = 2, + anon_sym_SEMI, + anon_sym_COLON, + [71700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 2, - anon_sym_COMMA, + ACTIONS(4753), 1, + anon_sym_COLON, + ACTIONS(4970), 1, anon_sym_RPAREN, - [68843] = 3, + STATE(2000), 1, + sym_gnu_asm_input_operand_list, + [71713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_RBRACE, - ACTIONS(4898), 1, - anon_sym_COMMA, - [68853] = 2, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4972), 1, + anon_sym_SEMI, + STATE(2254), 1, + sym_attribute_specifier, + [71726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 2, + ACTIONS(4801), 1, anon_sym_COMMA, + ACTIONS(4974), 1, anon_sym_RPAREN, - [68861] = 3, + STATE(1934), 1, + aux_sym_parameter_list_repeat1, + [71739] = 3, + ACTIONS(3595), 1, + sym_comment, + STATE(1857), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4976), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - sym_identifier, - STATE(1831), 1, - sym_attribute, - [68871] = 2, + ACTIONS(3880), 1, + anon_sym___attribute__, + ACTIONS(4978), 1, + anon_sym_SEMI, + STATE(2350), 1, + sym_attribute_specifier, + [71763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4902), 2, + ACTIONS(4980), 3, anon_sym_COMMA, anon_sym_SEMI, - [68879] = 3, - ACTIONS(3), 1, + anon_sym___attribute__, + [71772] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(126), 1, - sym_compound_statement, - [68889] = 3, + STATE(1859), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4982), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [71783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(388), 1, - sym_parenthesized_expression, - [68899] = 3, + ACTIONS(4984), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [71792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1727), 1, - sym_compound_statement, - [68909] = 3, + ACTIONS(4986), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [71801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1979), 1, - sym_parenthesized_expression, - [68919] = 3, + ACTIONS(4988), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [71809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(415), 1, - sym_parenthesized_expression, - [68929] = 3, + ACTIONS(4434), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [71817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1999), 1, - sym_parenthesized_expression, - [68939] = 3, - ACTIONS(3619), 1, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4992), 1, + anon_sym_RPAREN, + [71827] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(4994), 1, aux_sym_preproc_include_token2, - ACTIONS(4910), 1, + ACTIONS(4996), 1, sym_preproc_arg, - [68949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(171), 1, - sym_compound_statement, - [68959] = 3, + [71837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(2002), 1, - sym_parenthesized_expression, - [68969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(2021), 1, - sym_parenthesized_expression, - [68979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - STATE(1716), 1, + STATE(92), 1, sym_compound_statement, - [68989] = 3, + [71847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1980), 1, - sym_parenthesized_expression, - [68999] = 3, - ACTIONS(3), 1, + ACTIONS(4879), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [71855] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1948), 1, - sym_parenthesized_expression, - [69009] = 3, + ACTIONS(4998), 1, + aux_sym_preproc_include_token2, + ACTIONS(5000), 1, + sym_preproc_arg, + [71865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(2078), 1, sym_parenthesized_expression, - [69019] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4912), 1, - aux_sym_preproc_include_token2, - ACTIONS(4914), 1, - sym_preproc_arg, - [69029] = 3, + [71875] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(499), 1, anon_sym_LBRACE, - STATE(378), 1, - sym_compound_statement, - [69039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - anon_sym_LBRACE, - STATE(109), 1, + STATE(286), 1, sym_compound_statement, - [69049] = 2, + [71885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 2, + ACTIONS(5004), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1732), 1, - sym_compound_statement, - [69067] = 3, - ACTIONS(3), 1, + ACTIONS(5006), 1, + anon_sym_RBRACE, + [71895] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(439), 1, - sym_parenthesized_expression, - [69077] = 3, + ACTIONS(5008), 1, + aux_sym_preproc_include_token2, + ACTIONS(5010), 1, + sym_preproc_arg, + [71905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1927), 1, - sym_parenthesized_expression, - [69087] = 3, - ACTIONS(3), 1, + ACTIONS(5012), 1, + sym_identifier, + STATE(1963), 1, + sym_attribute, + [71915] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(440), 1, - sym_parenthesized_expression, - [69097] = 3, + ACTIONS(5014), 1, + aux_sym_preproc_include_token2, + ACTIONS(5016), 1, + sym_preproc_arg, + [71925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(2583), 1, anon_sym_LPAREN2, - STATE(1977), 1, - sym_parenthesized_expression, - [69107] = 3, + STATE(2330), 1, + sym_argument_list, + [71935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5018), 1, anon_sym_LPAREN2, - STATE(2105), 1, + STATE(455), 1, sym_parenthesized_expression, - [69117] = 3, + [71945] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1771), 1, + STATE(1834), 1, sym_compound_statement, - [69127] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4918), 1, - aux_sym_preproc_include_token2, - ACTIONS(4920), 1, - sym_preproc_arg, - [69137] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [69145] = 3, + [71955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_compound_statement, - [69155] = 3, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(457), 1, + sym_parenthesized_expression, + [71965] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(108), 1, + STATE(99), 1, sym_compound_statement, - [69165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(379), 1, - sym_parenthesized_expression, - [69175] = 3, + [71975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(1920), 1, - sym_parenthesized_expression, - [69185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4924), 1, + ACTIONS(5020), 1, sym_identifier, - ACTIONS(4926), 1, - anon_sym_RPAREN, - [69195] = 3, + ACTIONS(5022), 1, + anon_sym_LPAREN2, + [71985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(399), 1, + STATE(2119), 1, sym_parenthesized_expression, - [69205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - sym_identifier, - STATE(1805), 1, - sym_attribute, - [69215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4344), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [69223] = 2, + [71995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3474), 2, + ACTIONS(3528), 2, anon_sym_COMMA, anon_sym_SEMI, - [69231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3478), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4928), 1, - sym_identifier, - ACTIONS(4930), 1, - anon_sym_LPAREN2, - [69249] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4932), 1, - aux_sym_preproc_include_token2, - ACTIONS(4934), 1, - sym_preproc_arg, - [69259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3462), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [69275] = 3, + [72003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5018), 1, anon_sym_LPAREN2, - STATE(466), 1, + STATE(415), 1, sym_parenthesized_expression, - [69285] = 2, + [72013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(1910), 1, + STATE(2121), 1, sym_parenthesized_expression, - [69303] = 3, + [72023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(2048), 1, - sym_argument_list, - [69313] = 3, + STATE(2273), 1, + sym_parenthesized_expression, + [72033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(265), 1, + STATE(324), 1, sym_compound_statement, - [69323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN2, - STATE(2204), 1, - sym_parenthesized_expression, - [69333] = 3, + [72043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(457), 1, + STATE(2090), 1, sym_parenthesized_expression, - [69343] = 3, + [72053] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1743), 1, + STATE(1818), 1, sym_compound_statement, - [69353] = 3, + [72063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(4404), 2, anon_sym_COMMA, - ACTIONS(4938), 1, - anon_sym_RBRACE, - [69363] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [72071] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(279), 1, - sym_compound_statement, - [69373] = 3, + ACTIONS(5024), 1, + aux_sym_preproc_include_token2, + ACTIONS(5026), 1, + sym_preproc_arg, + [72081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(1935), 1, + STATE(2073), 1, sym_parenthesized_expression, - [69383] = 2, + [72091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [69391] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4943), 1, - aux_sym_preproc_include_token2, - ACTIONS(4945), 1, - sym_preproc_arg, - [69401] = 2, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(414), 1, + sym_parenthesized_expression, + [72101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [69409] = 3, - ACTIONS(3619), 1, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2040), 1, + sym_parenthesized_expression, + [72111] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4947), 1, + ACTIONS(5028), 1, aux_sym_preproc_include_token2, - ACTIONS(4949), 1, + ACTIONS(5030), 1, sym_preproc_arg, - [69419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1723), 1, - sym_compound_statement, - [69429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(312), 1, - sym_compound_statement, - [69439] = 3, + [72121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(408), 1, + STATE(2402), 1, sym_parenthesized_expression, - [69449] = 3, + [72131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(280), 1, - sym_compound_statement, - [69459] = 3, + ACTIONS(5032), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [72139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - STATE(287), 1, + STATE(182), 1, sym_compound_statement, - [69469] = 3, + [72149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_LPAREN2, - STATE(404), 1, - sym_parenthesized_expression, - [69479] = 3, - ACTIONS(3), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1843), 1, + sym_compound_statement, + [72159] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(4900), 1, - sym_identifier, - STATE(1996), 1, - sym_attribute, - [69489] = 3, + ACTIONS(5034), 1, + aux_sym_preproc_include_token2, + ACTIONS(5036), 1, + sym_preproc_arg, + [72169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5018), 1, anon_sym_LPAREN2, - STATE(384), 1, + STATE(428), 1, sym_parenthesized_expression, - [69499] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4951), 1, - sym_identifier, - ACTIONS(4953), 1, - anon_sym_LPAREN2, - [69509] = 3, + [72179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(2006), 1, + STATE(2058), 1, sym_parenthesized_expression, - [69519] = 3, + [72189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, + ACTIONS(5018), 1, anon_sym_LPAREN2, - STATE(385), 1, + STATE(429), 1, sym_parenthesized_expression, - [69529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - sym_identifier, - STATE(1854), 1, - sym_attribute, - [69539] = 2, + [72199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 2, + ACTIONS(5038), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69547] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4957), 1, - aux_sym_preproc_include_token2, - ACTIONS(4959), 1, - sym_preproc_arg, - [69557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2558), 1, - anon_sym_LPAREN2, - STATE(2074), 1, - sym_argument_list, - [69567] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4961), 1, - aux_sym_preproc_include_token2, - ACTIONS(4963), 1, - sym_preproc_arg, - [69577] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4965), 1, - aux_sym_preproc_include_token2, - ACTIONS(4967), 1, - sym_preproc_arg, - [69587] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4969), 1, - aux_sym_preproc_include_token2, - ACTIONS(4971), 1, - sym_preproc_arg, - [69597] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4973), 1, - aux_sym_preproc_include_token2, - ACTIONS(4975), 1, - sym_preproc_arg, - [69607] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4977), 1, - aux_sym_preproc_include_token2, - ACTIONS(4979), 1, - sym_preproc_arg, - [69617] = 2, + anon_sym_RPAREN, + [72207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 2, + ACTIONS(5040), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [69625] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4981), 1, - aux_sym_preproc_include_token2, - ACTIONS(4983), 1, - sym_preproc_arg, - [69635] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4985), 1, - aux_sym_preproc_include_token2, - ACTIONS(4987), 1, - sym_preproc_arg, - [69645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_compound_statement, - [69655] = 3, + anon_sym_RPAREN, + [72215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(5002), 1, anon_sym_LPAREN2, - STATE(2134), 1, + STATE(2107), 1, sym_parenthesized_expression, - [69665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(551), 1, - anon_sym_LBRACE, - STATE(318), 1, - sym_compound_statement, - [69675] = 3, + [72225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(193), 1, - sym_compound_statement, - [69685] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4989), 1, - aux_sym_preproc_include_token2, - ACTIONS(4991), 1, - sym_preproc_arg, - [69695] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4993), 1, - aux_sym_preproc_include_token2, - ACTIONS(4995), 1, - sym_preproc_arg, - [69705] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4997), 1, - aux_sym_preproc_include_token2, - ACTIONS(4999), 1, - sym_preproc_arg, - [69715] = 3, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2155), 1, + sym_parenthesized_expression, + [72235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(365), 1, + STATE(1878), 1, sym_compound_statement, - [69725] = 3, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(5001), 1, - aux_sym_preproc_include_token2, - ACTIONS(5003), 1, - sym_preproc_arg, - [69735] = 3, + [72245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(209), 1, + STATE(286), 1, sym_compound_statement, - [69745] = 2, + [72255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - anon_sym_RBRACE, - [69752] = 2, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(403), 1, + sym_parenthesized_expression, + [72265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - sym_identifier, - [69759] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2122), 1, + sym_parenthesized_expression, + [72275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, + ACTIONS(5018), 1, anon_sym_LPAREN2, - [69766] = 2, + STATE(466), 1, + sym_parenthesized_expression, + [72285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, - aux_sym_preproc_if_token2, - [69773] = 2, - ACTIONS(3619), 1, + ACTIONS(565), 1, + anon_sym_LBRACE, + STATE(337), 1, + sym_compound_statement, + [72295] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5013), 1, - aux_sym_preproc_include_token2, - [69780] = 2, - ACTIONS(3619), 1, + ACTIONS(5012), 1, + sym_identifier, + STATE(1925), 1, + sym_attribute, + [72305] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(5042), 1, aux_sym_preproc_include_token2, - [69787] = 2, + ACTIONS(5044), 1, + sym_preproc_arg, + [72315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 1, - aux_sym_preproc_if_token2, - [69794] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2383), 1, + sym_parenthesized_expression, + [72325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, - anon_sym_LPAREN2, - [69801] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + [72335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5021), 1, - aux_sym_preproc_if_token2, - [69808] = 2, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(302), 1, + sym_compound_statement, + [72345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(5046), 1, sym_identifier, - [69815] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(5025), 1, - aux_sym_preproc_include_token2, - [69822] = 2, + ACTIONS(5048), 1, + anon_sym_LPAREN2, + [72355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_RPAREN, - [69829] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2077), 1, + sym_parenthesized_expression, + [72365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5029), 1, - anon_sym_SEMI, - [69836] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2266), 1, + sym_parenthesized_expression, + [72375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 1, + ACTIONS(3958), 1, + anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_COMMA, - [69843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5033), 1, - aux_sym_preproc_if_token2, - [69850] = 2, + [72385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, - aux_sym_preproc_if_token2, - [69857] = 2, + ACTIONS(2583), 1, + anon_sym_LPAREN2, + STATE(2189), 1, + sym_argument_list, + [72395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(4760), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [69864] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5039), 1, - anon_sym_SEMI, - [69871] = 2, - ACTIONS(3), 1, + [72403] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3466), 1, - anon_sym_SEMI, - [69878] = 2, + ACTIONS(5050), 1, + aux_sym_preproc_include_token2, + ACTIONS(5052), 1, + sym_preproc_arg, + [72413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - anon_sym_COLON, - [69885] = 2, + ACTIONS(3484), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_SEMI, - [69892] = 2, + ACTIONS(3482), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 1, - aux_sym_preproc_if_token2, - [69899] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1817), 1, + sym_compound_statement, + [72439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, - anon_sym_SEMI, - [69906] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(5047), 1, - aux_sym_preproc_include_token2, - [69913] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1853), 1, + sym_compound_statement, + [72449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5049), 1, - anon_sym_RPAREN, - [69920] = 2, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(281), 1, + sym_compound_statement, + [72459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5051), 1, - anon_sym_STAR, - [69927] = 2, + ACTIONS(5012), 1, + sym_identifier, + STATE(2028), 1, + sym_attribute, + [72469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3460), 1, + ACTIONS(5054), 2, + anon_sym_COMMA, anon_sym_SEMI, - [69934] = 2, - ACTIONS(3619), 1, + [72477] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5056), 1, aux_sym_preproc_include_token2, - [69941] = 2, + ACTIONS(5058), 1, + sym_preproc_arg, + [72487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - anon_sym_RPAREN, - [69948] = 2, + ACTIONS(5060), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [72495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5062), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [69955] = 2, + [72503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_SEMI, - [69962] = 2, + ACTIONS(4848), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_preproc_if_token2, - [69969] = 2, - ACTIONS(3619), 1, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(462), 1, + sym_parenthesized_expression, + [72521] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5061), 1, + ACTIONS(5065), 1, aux_sym_preproc_include_token2, - [69976] = 2, + ACTIONS(5067), 1, + sym_preproc_arg, + [72531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - aux_sym_preproc_if_token2, - [69983] = 2, + ACTIONS(5002), 1, + anon_sym_LPAREN2, + STATE(2047), 1, + sym_parenthesized_expression, + [72541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, - aux_sym_preproc_if_token2, - [69990] = 2, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(461), 1, + sym_parenthesized_expression, + [72551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, - aux_sym_preproc_if_token2, - [69997] = 2, + ACTIONS(5012), 1, + sym_identifier, + STATE(1924), 1, + sym_attribute, + [72561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, - anon_sym_RPAREN, - [70004] = 2, - ACTIONS(3), 1, + ACTIONS(3486), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72569] = 3, + ACTIONS(3595), 1, sym_comment, + ACTIONS(5069), 1, + aux_sym_preproc_include_token2, ACTIONS(5071), 1, - anon_sym_RPAREN, - [70011] = 2, - ACTIONS(3619), 1, + sym_preproc_arg, + [72579] = 3, + ACTIONS(3595), 1, sym_comment, ACTIONS(5073), 1, aux_sym_preproc_include_token2, - [70018] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(5075), 1, - anon_sym_RPAREN, - [70025] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [72589] = 3, + ACTIONS(3595), 1, sym_comment, ACTIONS(5077), 1, - aux_sym_preproc_if_token2, - [70032] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(5079), 1, aux_sym_preproc_include_token2, - [70039] = 2, + ACTIONS(5079), 1, + sym_preproc_arg, + [72599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, - sym_primitive_type, - [70046] = 2, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(439), 1, + sym_parenthesized_expression, + [72609] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_compound_statement, + [72619] = 3, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(5081), 1, + aux_sym_preproc_include_token2, ACTIONS(5083), 1, - anon_sym_RPAREN, - [70053] = 2, + sym_preproc_arg, + [72629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, - aux_sym_preproc_if_token2, - [70060] = 2, - ACTIONS(3), 1, + ACTIONS(5018), 1, + anon_sym_LPAREN2, + STATE(500), 1, + sym_parenthesized_expression, + [72639] = 3, + ACTIONS(3595), 1, sym_comment, + ACTIONS(5085), 1, + aux_sym_preproc_include_token2, ACTIONS(5087), 1, - sym_identifier, - [70067] = 2, + sym_preproc_arg, + [72649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, - aux_sym_preproc_if_token2, - [70074] = 2, - ACTIONS(3619), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(212), 1, + sym_compound_statement, + [72659] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(5089), 1, aux_sym_preproc_include_token2, - [70081] = 2, - ACTIONS(3), 1, + ACTIONS(5091), 1, + sym_preproc_arg, + [72669] = 3, + ACTIONS(3595), 1, sym_comment, ACTIONS(5093), 1, - sym_identifier, - [70088] = 2, - ACTIONS(3), 1, - sym_comment, + aux_sym_preproc_include_token2, ACTIONS(5095), 1, - anon_sym_RPAREN, - [70095] = 2, + sym_preproc_arg, + [72679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, - anon_sym_SEMI, - [70102] = 2, - ACTIONS(3619), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(264), 1, + sym_compound_statement, + [72689] = 3, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5099), 1, + ACTIONS(5097), 1, aux_sym_preproc_include_token2, - [70109] = 2, - ACTIONS(3619), 1, + ACTIONS(5099), 1, + sym_preproc_arg, + [72699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4715), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72707] = 3, + ACTIONS(3595), 1, sym_comment, ACTIONS(5101), 1, aux_sym_preproc_include_token2, - [70116] = 2, + ACTIONS(5103), 1, + sym_preproc_arg, + [72717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - aux_sym_preproc_if_token2, - [70123] = 2, - ACTIONS(3619), 1, + ACTIONS(565), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_compound_statement, + [72727] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, - aux_sym_preproc_include_token2, - [70130] = 2, + ACTIONS(565), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_compound_statement, + [72737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, + ACTIONS(3500), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [70137] = 2, + [72745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(178), 1, + sym_compound_statement, + [72755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(109), 1, + sym_compound_statement, + [72765] = 3, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(5105), 1, + aux_sym_preproc_include_token2, + ACTIONS(5107), 1, + sym_preproc_arg, + [72775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5109), 1, - anon_sym_RPAREN, - [70144] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_if_token2, + [72782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3426), 1, + anon_sym_SEMI, + [72789] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5111), 1, - aux_sym_preproc_include_token2, - [70151] = 2, - ACTIONS(3619), 1, + anon_sym_SEMI, + [72796] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5113), 1, - aux_sym_preproc_include_token2, - [70158] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_if_token2, + [72803] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5115), 1, - aux_sym_preproc_include_token2, - [70165] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(5117), 1, - aux_sym_preproc_include_token2, - [70172] = 2, + sym_identifier, + [72810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, - anon_sym_RPAREN, - [70179] = 2, + ACTIONS(5117), 1, + aux_sym_preproc_if_token2, + [72817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5119), 1, - sym_identifier, - [70186] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [72824] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5121), 1, - sym_identifier, - [70193] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_include_token2, + [72831] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_COLON, + [72838] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5123), 1, aux_sym_preproc_include_token2, - [70200] = 2, + [72845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5125), 1, - anon_sym_STAR, - [70207] = 2, + aux_sym_preproc_if_token2, + [72852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5127), 1, - anon_sym_RPAREN, - [70214] = 2, + anon_sym_COLON, + [72859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5129), 1, - aux_sym_preproc_if_token2, - [70221] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [72866] = 2, + ACTIONS(3378), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [72873] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5131), 1, - anon_sym_COLON, - [70228] = 2, + aux_sym_preproc_include_token2, + [72880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5133), 1, - anon_sym_SEMI, - [70235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_SEMI, - [70242] = 2, + anon_sym_RPAREN, + [72887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5135), 1, - sym_identifier, - [70249] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [72894] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5137), 1, - aux_sym_preproc_if_token2, - [70256] = 2, + aux_sym_preproc_include_token2, + [72901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5139), 1, - anon_sym_while, - [70263] = 2, + anon_sym_RPAREN, + [72908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5141), 1, - aux_sym_preproc_if_token2, - [70270] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4759), 1, - aux_sym_preproc_include_token2, - [70277] = 2, + anon_sym_RPAREN, + [72915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5143), 1, - anon_sym_SEMI, - [70284] = 2, + anon_sym_RPAREN, + [72922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5145), 1, - anon_sym_SEMI, - [70291] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [72929] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5147), 1, - anon_sym_RPAREN, - [70298] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [72936] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5149), 1, - anon_sym_STAR, - [70305] = 2, + aux_sym_preproc_include_token2, + [72943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5151), 1, anon_sym_SEMI, - [70312] = 2, + [72950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, - anon_sym_COLON, - [70319] = 2, + ACTIONS(3476), 1, + anon_sym_SEMI, + [72957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, + ACTIONS(3428), 1, anon_sym_SEMI, - [70326] = 2, + [72964] = 2, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(5153), 1, + aux_sym_preproc_include_token2, + [72971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(5155), 1, anon_sym_SEMI, - [70333] = 2, + [72978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5157), 1, anon_sym_RPAREN, - [70340] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - anon_sym_RPAREN, - [70347] = 2, - ACTIONS(3), 1, + [72985] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5159), 1, - anon_sym_SEMI, - [70354] = 2, + aux_sym_preproc_include_token2, + [72992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5161), 1, - anon_sym_RBRACK, - [70361] = 2, - ACTIONS(2424), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, - sym_comment, - [70368] = 2, + anon_sym_SEMI, + [72999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5163), 1, anon_sym_RPAREN, - [70375] = 2, + [73006] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3436), 1, + anon_sym_RPAREN, + [73013] = 2, + ACTIONS(3595), 1, + sym_comment, ACTIONS(5165), 1, - aux_sym_preproc_if_token2, - [70382] = 2, + aux_sym_preproc_include_token2, + [73020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5167), 1, - aux_sym_preproc_if_token2, - [70389] = 2, + anon_sym_RPAREN, + [73027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5169), 1, - aux_sym_preproc_if_token2, - [70396] = 2, - ACTIONS(3), 1, + anon_sym_STAR, + [73034] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5171), 1, - aux_sym_preproc_if_token2, - [70403] = 2, + aux_sym_preproc_include_token2, + [73041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5173), 1, - anon_sym_RPAREN, - [70410] = 2, - ACTIONS(3619), 1, + anon_sym_SEMI, + [73048] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5175), 1, - aux_sym_preproc_include_token2, - [70417] = 2, + anon_sym_SEMI, + [73055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5177), 1, - anon_sym_SEMI, - [70424] = 2, + anon_sym_RPAREN, + [73062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5179), 1, - anon_sym_SEMI, - [70431] = 2, + anon_sym_COLON, + [73069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5181), 1, - anon_sym_SEMI, - [70438] = 2, + sym_identifier, + [73076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5183), 1, - anon_sym_RPAREN, - [70445] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73083] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5185), 1, - anon_sym_RPAREN, - [70452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3388), 1, - anon_sym_SEMI, - [70459] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 1, - anon_sym_RBRACE, - [70466] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [73090] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5187), 1, - anon_sym_SEMI, - [70473] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4819), 1, aux_sym_preproc_include_token2, - [70480] = 2, + [73097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5189), 1, - sym_identifier, - [70487] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73104] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5191), 1, - sym_identifier, - [70494] = 2, + aux_sym_preproc_include_token2, + [73111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5193), 1, - aux_sym_preproc_if_token2, - [70501] = 2, + sym_identifier, + [73118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5195), 1, - aux_sym_preproc_if_token2, - [70508] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [73125] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5197), 1, - anon_sym_SEMI, - [70515] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [73132] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5199), 1, - anon_sym_STAR, - [70522] = 2, + aux_sym_preproc_include_token2, + [73139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5201), 1, - sym_identifier, - [70529] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73146] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5203), 1, - aux_sym_preproc_if_token2, - [70536] = 2, + aux_sym_preproc_include_token2, + [73153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5205), 1, - anon_sym_RPAREN, - [70543] = 2, + sym_identifier, + [73160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5207), 1, - anon_sym_RPAREN, - [70550] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4836), 1, - aux_sym_preproc_include_token2, - [70557] = 2, + sym_identifier, + [73167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5209), 1, - aux_sym_preproc_if_token2, - [70564] = 2, + sym_identifier, + [73174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5211), 1, - aux_sym_preproc_if_token2, - [70571] = 2, - ACTIONS(3), 1, + sym_identifier, + [73181] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5213), 1, - aux_sym_preproc_if_token2, - [70578] = 2, + aux_sym_preproc_include_token2, + [73188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, - anon_sym_COMMA, - [70585] = 2, + ACTIONS(3450), 1, + anon_sym_COLON, + [73195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5215), 1, - anon_sym_SEMI, - [70592] = 2, + aux_sym_preproc_if_token2, + [73202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5217), 1, - anon_sym_RBRACE, - [70599] = 2, + anon_sym_SEMI, + [73209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5219), 1, - sym_identifier, - [70606] = 2, + aux_sym_preproc_if_token2, + [73216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5221), 1, aux_sym_preproc_if_token2, - [70613] = 2, + [73223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5223), 1, - anon_sym_RBRACE, - [70620] = 2, + sym_identifier, + [73230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5225), 1, - anon_sym_SEMI, - [70627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 1, - anon_sym_SEMI, - [70634] = 2, + anon_sym_RPAREN, + [73237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, + ACTIONS(3474), 1, anon_sym_SEMI, - [70641] = 2, + [73244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5227), 1, - sym_identifier, - [70648] = 2, + aux_sym_preproc_if_token2, + [73251] = 2, + ACTIONS(2440), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [73258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5229), 1, - anon_sym_RPAREN, - [70655] = 2, - ACTIONS(3), 1, + sym_identifier, + [73265] = 2, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3454), 1, - anon_sym_RPAREN, - [70662] = 2, + ACTIONS(4789), 1, + aux_sym_preproc_include_token2, + [73272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5231), 1, - anon_sym_COLON, - [70669] = 2, + anon_sym_RPAREN, + [73279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5233), 1, - anon_sym_SEMI, - [70676] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_if_token2, + [73286] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5235), 1, - aux_sym_preproc_include_token2, - [70683] = 2, + aux_sym_preproc_if_token2, + [73293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5237), 1, - anon_sym_COLON, - [70690] = 2, + aux_sym_preproc_if_token2, + [73300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5239), 1, - anon_sym_SEMI, - [70697] = 2, + anon_sym_COLON, + [73307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5241), 1, anon_sym_RPAREN, - [70704] = 2, + [73314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5243), 1, - sym_identifier, - [70711] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73321] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5245), 1, - anon_sym_RPAREN, - [70718] = 2, + aux_sym_preproc_include_token2, + [73328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5247), 1, - aux_sym_preproc_if_token2, - [70725] = 2, + anon_sym_SEMI, + [73335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5249), 1, - aux_sym_preproc_if_token2, - [70732] = 2, + anon_sym_RPAREN, + [73342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5251), 1, - aux_sym_preproc_if_token2, - [70739] = 2, + anon_sym_COLON, + [73349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5253), 1, - sym_identifier, - [70746] = 2, + anon_sym_RBRACK, + [73356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5255), 1, aux_sym_preproc_if_token2, - [70753] = 2, - ACTIONS(3619), 1, + [73363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3438), 1, + anon_sym_SEMI, + [73370] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5257), 1, - aux_sym_preproc_include_token2, - [70760] = 2, - ACTIONS(3330), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, + sym_identifier, + [73377] = 2, + ACTIONS(3), 1, sym_comment, - [70767] = 2, + ACTIONS(3442), 1, + anon_sym_RPAREN, + [73384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5259), 1, sym_identifier, - [70774] = 2, - ACTIONS(3619), 1, - sym_comment, - ACTIONS(4708), 1, - aux_sym_preproc_include_token2, - [70781] = 2, - ACTIONS(3348), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, + [73391] = 2, + ACTIONS(3), 1, sym_comment, - [70788] = 2, + ACTIONS(3444), 1, + anon_sym_RPAREN, + [73398] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3454), 1, + anon_sym_RPAREN, + [73405] = 2, + ACTIONS(3595), 1, + sym_comment, ACTIONS(5261), 1, - sym_identifier, - [70795] = 2, + aux_sym_preproc_include_token2, + [73412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5263), 1, - aux_sym_preproc_if_token2, - [70802] = 2, + anon_sym_SEMI, + [73419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5265), 1, - anon_sym_SEMI, - [70809] = 2, + aux_sym_preproc_if_token2, + [73426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5267), 1, - anon_sym_SEMI, - [70816] = 2, + anon_sym_while, + [73433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5269), 1, aux_sym_preproc_if_token2, - [70823] = 2, + [73440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5271), 1, - sym_identifier, - [70830] = 2, + sym_primitive_type, + [73447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5273), 1, - anon_sym_RPAREN, - [70837] = 2, + anon_sym_RBRACE, + [73454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5275), 1, anon_sym_RPAREN, - [70844] = 2, + [73461] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_RPAREN, + [73468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5277), 1, sym_identifier, - [70851] = 2, + [73475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5279), 1, - anon_sym_COLON, - [70858] = 2, + sym_identifier, + [73482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5281), 1, aux_sym_preproc_if_token2, - [70865] = 2, - ACTIONS(3619), 1, + [73489] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_COMMA, + [73496] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5283), 1, - aux_sym_preproc_include_token2, - [70872] = 2, + sym_identifier, + [73503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5285), 1, sym_identifier, - [70879] = 2, + [73510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5287), 1, - sym_primitive_type, - [70886] = 2, + sym_identifier, + [73517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5289), 1, - aux_sym_preproc_if_token2, - [70893] = 2, + sym_identifier, + [73524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5291), 1, - aux_sym_preproc_if_token2, - [70900] = 2, + anon_sym_RPAREN, + [73531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5293), 1, - sym_identifier, - [70907] = 2, + anon_sym_RPAREN, + [73538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5295), 1, - anon_sym_SEMI, - [70914] = 2, + aux_sym_preproc_if_token2, + [73545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5297), 1, - anon_sym_RPAREN, - [70921] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73552] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5299), 1, - aux_sym_preproc_if_token2, - [70928] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_include_token2, + [73559] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5301), 1, - aux_sym_preproc_include_token2, - [70935] = 2, + aux_sym_preproc_if_token2, + [73566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5303), 1, aux_sym_preproc_if_token2, - [70942] = 2, - ACTIONS(3619), 1, + [73573] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4608), 1, - aux_sym_preproc_include_token2, - [70949] = 2, + ACTIONS(3504), 1, + anon_sym_COLON, + [73580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 1, + ACTIONS(3958), 1, anon_sym_RBRACE, - [70956] = 2, + [73587] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3440), 1, + anon_sym_RPAREN, + [73594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5305), 1, - sym_identifier, - [70963] = 2, + anon_sym_RPAREN, + [73601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5307), 1, sym_identifier, - [70970] = 2, - ACTIONS(2420), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, - sym_comment, - [70977] = 2, + [73608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5309), 1, - sym_identifier, - [70984] = 2, - ACTIONS(3334), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, - sym_comment, - [70991] = 2, + aux_sym_preproc_if_token2, + [73615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5311), 1, - anon_sym_SEMI, - [70998] = 2, + aux_sym_preproc_if_token2, + [73622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5313), 1, - aux_sym_preproc_if_token2, - [71005] = 2, + anon_sym_SEMI, + [73629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5315), 1, anon_sym_RPAREN, - [71012] = 2, + [73636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5317), 1, - sym_identifier, - [71019] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_if_token2, + [73643] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5319), 1, + aux_sym_preproc_if_token2, + [73650] = 2, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4930), 1, aux_sym_preproc_include_token2, - [71026] = 2, + [73657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5321), 1, - ts_builtin_sym_end, - [71033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_RPAREN, - [71040] = 2, + anon_sym_SEMI, + [73664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5323), 1, - anon_sym_LPAREN2, - [71047] = 2, + aux_sym_preproc_if_token2, + [73671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5325), 1, - aux_sym_preproc_if_token2, - [71054] = 2, + anon_sym_RPAREN, + [73678] = 2, + ACTIONS(2436), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [73685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5327), 1, - aux_sym_preproc_if_token2, - [71061] = 2, + anon_sym_SEMI, + [73692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5329), 1, - anon_sym_SEMI, - [71068] = 2, - ACTIONS(3619), 1, + anon_sym_RBRACE, + [73699] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5331), 1, - aux_sym_preproc_include_token2, - [71075] = 2, + aux_sym_preproc_if_token2, + [73706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5333), 1, - sym_identifier, - [71082] = 2, + anon_sym_SEMI, + [73713] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5335), 1, - sym_identifier, - [71089] = 2, + aux_sym_preproc_if_token2, + [73720] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5337), 1, - anon_sym_SEMI, - [71096] = 2, + ts_builtin_sym_end, + [73727] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3402), 1, + anon_sym_RBRACE, + [73734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5339), 1, - anon_sym_RPAREN, - [71103] = 2, + aux_sym_preproc_if_token2, + [73741] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5341), 1, - sym_identifier, - [71110] = 2, + aux_sym_preproc_if_token2, + [73748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5343), 1, + ACTIONS(3464), 1, + anon_sym_COLON, + [73755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3446), 1, anon_sym_SEMI, - [71117] = 2, + [73762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5343), 1, + anon_sym_RPAREN, + [73769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5345), 1, - aux_sym_preproc_if_token2, - [71124] = 2, + anon_sym_SEMI, + [73776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5347), 1, - anon_sym_RBRACK, - [71131] = 2, + sym_identifier, + [73783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5349), 1, - aux_sym_preproc_if_token2, - [71138] = 2, + sym_identifier, + [73790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5351), 1, - sym_identifier, - [71145] = 2, + ACTIONS(3516), 1, + anon_sym_SEMI, + [73797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - sym_identifier, - [71152] = 2, + ACTIONS(5351), 1, + anon_sym_SEMI, + [73804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(3452), 1, anon_sym_RPAREN, - [71159] = 2, + [73811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, - anon_sym_RPAREN, - [71166] = 2, + ACTIONS(5353), 1, + anon_sym_RBRACE, + [73818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(5355), 1, anon_sym_SEMI, - [71173] = 2, + [73825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(5357), 1, anon_sym_RPAREN, - [71180] = 2, + [73832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, - sym_identifier, - [71187] = 2, + ACTIONS(3478), 1, + anon_sym_SEMI, + [73839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5359), 1, sym_identifier, - [71194] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4898), 1, - anon_sym_COMMA, - [71201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3456), 1, - anon_sym_RPAREN, - [71208] = 2, + [73846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5361), 1, - aux_sym_preproc_if_token2, - [71215] = 2, + anon_sym_RPAREN, + [73853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5363), 1, anon_sym_LPAREN2, - [71222] = 2, - ACTIONS(3), 1, + [73860] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5365), 1, - sym_identifier, - [71229] = 2, + aux_sym_preproc_include_token2, + [73867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5367), 1, - aux_sym_preproc_if_token2, - [71236] = 2, + anon_sym_COMMA, + [73874] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5369), 1, aux_sym_preproc_if_token2, - [71243] = 2, + [73881] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5371), 1, anon_sym_SEMI, - [71250] = 2, + [73888] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5373), 1, - aux_sym_preproc_if_token2, - [71257] = 2, - ACTIONS(3619), 1, + anon_sym_LPAREN2, + [73895] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5375), 1, - aux_sym_preproc_include_token2, - [71264] = 2, + anon_sym_LPAREN2, + [73902] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5377), 1, - sym_identifier, - [71271] = 2, + aux_sym_preproc_if_token2, + [73909] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5379), 1, - anon_sym_LPAREN2, - [71278] = 2, + anon_sym_RPAREN, + [73916] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5381), 1, - anon_sym_LPAREN2, - [71285] = 2, + anon_sym_RPAREN, + [73923] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5383), 1, sym_identifier, - [71292] = 2, + [73930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5385), 1, - sym_identifier, - [71299] = 2, + anon_sym_SEMI, + [73937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5387), 1, - sym_identifier, - [71306] = 2, + anon_sym_RPAREN, + [73944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3462), 1, + anon_sym_COLON, + [73951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5389), 1, sym_identifier, - [71313] = 2, + [73958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5391), 1, aux_sym_preproc_if_token2, - [71320] = 2, + [73965] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3408), 1, + anon_sym_RBRACE, + [73972] = 2, + ACTIONS(3595), 1, + sym_comment, ACTIONS(5393), 1, - sym_identifier, - [71327] = 2, + aux_sym_preproc_include_token2, + [73979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5395), 1, - anon_sym_SEMI, - [71334] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [73986] = 2, + ACTIONS(3595), 1, sym_comment, - ACTIONS(5397), 1, - anon_sym_SEMI, - [71341] = 2, + ACTIONS(4883), 1, + aux_sym_preproc_include_token2, + [73993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, - anon_sym_RPAREN, - [71348] = 2, + ACTIONS(5397), 1, + sym_identifier, + [74000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5399), 1, - anon_sym_LPAREN2, - [71355] = 2, + sym_identifier, + [74007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5401), 1, - anon_sym_LPAREN2, - [71362] = 2, + anon_sym_RPAREN, + [74014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5403), 1, - anon_sym_RBRACE, - [71369] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [74021] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5405), 1, - anon_sym_LPAREN2, - [71376] = 2, + aux_sym_preproc_include_token2, + [74028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5407), 1, - aux_sym_preproc_if_token2, - [71383] = 2, + anon_sym_RPAREN, + [74035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5409), 1, - anon_sym_COLON, - [71390] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [74042] = 2, + ACTIONS(3595), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_RPAREN, - [71397] = 2, + ACTIONS(4894), 1, + aux_sym_preproc_include_token2, + [74049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5411), 1, - anon_sym_RPAREN, - [71404] = 2, + sym_identifier, + [74056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5413), 1, - aux_sym_preproc_if_token2, - [71411] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3450), 1, - anon_sym_SEMI, - [71418] = 2, + sym_primitive_type, + [74063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5415), 1, - aux_sym_preproc_if_token2, - [71425] = 2, + anon_sym_SEMI, + [74070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5417), 1, - anon_sym_while, - [71432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3436), 1, - anon_sym_SEMI, - [71439] = 2, + anon_sym_RPAREN, + [74077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5419), 1, - anon_sym_RPAREN, - [71446] = 2, + anon_sym_RBRACE, + [74084] = 2, + ACTIONS(3386), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [74091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5421), 1, - anon_sym_COLON, - [71453] = 2, + anon_sym_SEMI, + [74098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5423), 1, - sym_identifier, - [71460] = 2, + anon_sym_LPAREN2, + [74105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5425), 1, anon_sym_RPAREN, - [71467] = 2, + [74112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + anon_sym_SEMI, + [74119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5427), 1, - anon_sym_LPAREN2, - [71474] = 2, + aux_sym_preproc_if_token2, + [74126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5429), 1, - anon_sym_COMMA, - [71481] = 2, + sym_identifier, + [74133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5431), 1, - anon_sym_RPAREN, - [71488] = 2, + anon_sym_SEMI, + [74140] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5433), 1, - anon_sym_COLON, - [71495] = 2, + anon_sym_RPAREN, + [74147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5435), 1, anon_sym_SEMI, - [71502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_SEMI, - [71509] = 2, - ACTIONS(3), 1, + [74154] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5437), 1, - anon_sym_LPAREN2, - [71516] = 2, + aux_sym_preproc_include_token2, + [74161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5439), 1, - anon_sym_SEMI, - [71523] = 2, + sym_identifier, + [74168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5441), 1, - aux_sym_preproc_if_token2, - [71530] = 2, + sym_identifier, + [74175] = 2, + ACTIONS(3374), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [74182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5443), 1, - anon_sym_while, - [71537] = 2, + sym_identifier, + [74189] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5445), 1, sym_identifier, - [71544] = 2, + [74196] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5447), 1, - anon_sym_RBRACE, - [71551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_COMMA, - [71558] = 2, + sym_identifier, + [74203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5449), 1, - aux_sym_preproc_if_token2, - [71565] = 2, + sym_identifier, + [74210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5451), 1, - anon_sym_RPAREN, - [71572] = 2, + anon_sym_COLON, + [74217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5453), 1, - sym_identifier, - [71579] = 2, + anon_sym_STAR, + [74224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5455), 1, - sym_identifier, - [71586] = 2, + aux_sym_preproc_if_token2, + [74231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5457), 1, - anon_sym_while, - [71593] = 2, + anon_sym_COLON, + [74238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5459), 1, - anon_sym_LPAREN2, - [71600] = 2, + sym_identifier, + [74245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 1, + anon_sym_COMMA, + [74252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5461), 1, - anon_sym_RPAREN, - [71607] = 2, + anon_sym_LPAREN2, + [74259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5463), 1, anon_sym_SEMI, - [71614] = 2, + [74266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 1, - anon_sym_RPAREN, - [71621] = 2, - ACTIONS(3352), 1, - aux_sym_preproc_include_token2, - ACTIONS(3619), 1, - sym_comment, - [71628] = 2, + ACTIONS(3524), 1, + anon_sym_SEMI, + [74273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, - anon_sym_LPAREN2, - [71635] = 2, + ACTIONS(5465), 1, + aux_sym_preproc_if_token2, + [74280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, + ACTIONS(3520), 1, anon_sym_SEMI, - [71642] = 2, + [74287] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5467), 1, + sym_identifier, + [74294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5469), 1, - anon_sym_while, - [71649] = 2, + aux_sym_preproc_if_token2, + [74301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5471), 1, - aux_sym_preproc_if_token2, - [71656] = 2, + anon_sym_SEMI, + [74308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_RBRACE, - [71663] = 2, + ACTIONS(3522), 1, + anon_sym_SEMI, + [74315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5473), 1, - aux_sym_preproc_if_token2, - [71670] = 2, + anon_sym_SEMI, + [74322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5475), 1, aux_sym_preproc_if_token2, - [71677] = 2, + [74329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5477), 1, - anon_sym_LPAREN2, - [71684] = 2, + anon_sym_RPAREN, + [74336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5479), 1, - aux_sym_preproc_if_token2, - [71691] = 2, + ACTIONS(3526), 1, + anon_sym_RPAREN, + [74343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3382), 1, - anon_sym_RBRACE, - [71698] = 2, + ACTIONS(5479), 1, + sym_identifier, + [74350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5481), 1, - anon_sym_SEMI, - [71705] = 2, - ACTIONS(3619), 1, + anon_sym_RBRACE, + [74357] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5483), 1, - aux_sym_preproc_include_token2, - [71712] = 2, + anon_sym_SEMI, + [74364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5485), 1, - anon_sym_LPAREN2, - [71719] = 2, + aux_sym_preproc_if_token2, + [74371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5487), 1, - anon_sym_RBRACE, - [71726] = 2, + sym_identifier, + [74378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5489), 1, sym_identifier, - [71733] = 2, + [74385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5491), 1, - anon_sym_LPAREN2, - [71740] = 2, - ACTIONS(3), 1, + sym_identifier, + [74392] = 2, + ACTIONS(3595), 1, sym_comment, ACTIONS(5493), 1, - aux_sym_preproc_if_token2, - [71747] = 2, - ACTIONS(3619), 1, + aux_sym_preproc_include_token2, + [74399] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(5495), 1, + aux_sym_preproc_if_token2, + [74406] = 2, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(4708), 1, aux_sym_preproc_include_token2, - [71754] = 2, + [74413] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5497), 1, - anon_sym_LPAREN2, - [71761] = 2, + anon_sym_COLON, + [74420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5499), 1, aux_sym_preproc_if_token2, - [71768] = 2, + [74427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5501), 1, - sym_identifier, - [71775] = 2, + anon_sym_LPAREN2, + [74434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5503), 1, + aux_sym_preproc_if_token2, + [74441] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5505), 1, + aux_sym_preproc_if_token2, + [74448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5507), 1, + anon_sym_LPAREN2, + [74455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 1, + anon_sym_SEMI, + [74462] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5511), 1, + anon_sym_SEMI, + [74469] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5513), 1, + anon_sym_RPAREN, + [74476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5515), 1, + anon_sym_RPAREN, + [74483] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5517), 1, + sym_identifier, + [74490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5519), 1, + anon_sym_RBRACK, + [74497] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5521), 1, + sym_identifier, + [74504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5523), 1, + anon_sym_while, + [74511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5525), 1, + anon_sym_COLON, + [74518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5527), 1, + anon_sym_LPAREN2, + [74525] = 2, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(5529), 1, + aux_sym_preproc_include_token2, + [74532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5531), 1, + aux_sym_preproc_if_token2, + [74539] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5533), 1, + sym_identifier, + [74546] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5535), 1, + aux_sym_preproc_if_token2, + [74553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 1, + anon_sym_COMMA, + [74560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_SEMI, + [74567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3514), 1, + anon_sym_COLON, + [74574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5539), 1, + anon_sym_COLON, + [74581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3460), 1, + anon_sym_SEMI, + [74588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5541), 1, + anon_sym_SEMI, + [74595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5543), 1, + anon_sym_LPAREN2, + [74602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5545), 1, + anon_sym_STAR, + [74609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5547), 1, + anon_sym_LPAREN2, + [74616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5549), 1, + anon_sym_while, + [74623] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5551), 1, + anon_sym_LPAREN2, + [74630] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5553), 1, + anon_sym_SEMI, + [74637] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5555), 1, + anon_sym_RPAREN, + [74644] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3490), 1, + anon_sym_COLON, + [74651] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5006), 1, + anon_sym_RBRACE, + [74658] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5557), 1, + aux_sym_preproc_if_token2, + [74665] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5559), 1, + anon_sym_RPAREN, + [74672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5561), 1, + anon_sym_while, + [74679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5563), 1, + aux_sym_preproc_if_token2, + [74686] = 2, + ACTIONS(3382), 1, + aux_sym_preproc_include_token2, + ACTIONS(3595), 1, + sym_comment, + [74693] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3530), 1, + anon_sym_COLON, + [74700] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4432), 1, + anon_sym_COMMA, + [74707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5565), 1, + aux_sym_preproc_if_token2, + [74714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5567), 1, + aux_sym_preproc_if_token2, + [74721] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5569), 1, + anon_sym_SEMI, + [74728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5571), 1, + anon_sym_while, + [74735] = 2, + ACTIONS(3595), 1, + sym_comment, + ACTIONS(5573), 1, + aux_sym_preproc_include_token2, + [74742] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5575), 1, + aux_sym_preproc_if_token2, + [74749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5577), 1, + aux_sym_preproc_if_token2, + [74756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5579), 1, + anon_sym_RBRACE, + [74763] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 1, + anon_sym_LPAREN2, + [74770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5583), 1, + anon_sym_STAR, + [74777] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5585), 1, + anon_sym_RPAREN, + [74784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5587), 1, + aux_sym_preproc_if_token2, + [74791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_SEMI, + [74798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 1, + anon_sym_LPAREN2, + [74805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 1, + aux_sym_preproc_if_token2, + [74812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5595), 1, + sym_identifier, + [74819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5597), 1, + anon_sym_LPAREN2, + [74826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5599), 1, + anon_sym_RPAREN, + [74833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5601), 1, + aux_sym_preproc_if_token2, + [74840] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5603), 1, + anon_sym_LPAREN2, + [74847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3466), 1, + anon_sym_RPAREN, + [74854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5605), 1, + sym_identifier, + [74861] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(582)] = 0, - [SMALL_STATE(583)] = 115, - [SMALL_STATE(584)] = 230, - [SMALL_STATE(585)] = 342, - [SMALL_STATE(586)] = 452, - [SMALL_STATE(587)] = 561, - [SMALL_STATE(588)] = 670, - [SMALL_STATE(589)] = 779, - [SMALL_STATE(590)] = 888, - [SMALL_STATE(591)] = 997, - [SMALL_STATE(592)] = 1106, - [SMALL_STATE(593)] = 1213, - [SMALL_STATE(594)] = 1322, - [SMALL_STATE(595)] = 1431, - [SMALL_STATE(596)] = 1538, - [SMALL_STATE(597)] = 1645, - [SMALL_STATE(598)] = 1754, - [SMALL_STATE(599)] = 1863, - [SMALL_STATE(600)] = 1972, - [SMALL_STATE(601)] = 2079, - [SMALL_STATE(602)] = 2188, - [SMALL_STATE(603)] = 2297, - [SMALL_STATE(604)] = 2406, - [SMALL_STATE(605)] = 2515, - [SMALL_STATE(606)] = 2624, - [SMALL_STATE(607)] = 2733, - [SMALL_STATE(608)] = 2842, - [SMALL_STATE(609)] = 2951, - [SMALL_STATE(610)] = 3060, - [SMALL_STATE(611)] = 3169, - [SMALL_STATE(612)] = 3275, - [SMALL_STATE(613)] = 3379, - [SMALL_STATE(614)] = 3487, - [SMALL_STATE(615)] = 3593, - [SMALL_STATE(616)] = 3699, - [SMALL_STATE(617)] = 3805, - [SMALL_STATE(618)] = 3911, - [SMALL_STATE(619)] = 4015, - [SMALL_STATE(620)] = 4123, - [SMALL_STATE(621)] = 4227, - [SMALL_STATE(622)] = 4333, - [SMALL_STATE(623)] = 4439, - [SMALL_STATE(624)] = 4543, - [SMALL_STATE(625)] = 4647, - [SMALL_STATE(626)] = 4751, - [SMALL_STATE(627)] = 4859, - [SMALL_STATE(628)] = 4963, - [SMALL_STATE(629)] = 5071, - [SMALL_STATE(630)] = 5177, - [SMALL_STATE(631)] = 5281, - [SMALL_STATE(632)] = 5385, - [SMALL_STATE(633)] = 5493, - [SMALL_STATE(634)] = 5599, - [SMALL_STATE(635)] = 5707, - [SMALL_STATE(636)] = 5811, - [SMALL_STATE(637)] = 5917, - [SMALL_STATE(638)] = 6023, - [SMALL_STATE(639)] = 6126, - [SMALL_STATE(640)] = 6227, - [SMALL_STATE(641)] = 6330, - [SMALL_STATE(642)] = 6433, - [SMALL_STATE(643)] = 6534, - [SMALL_STATE(644)] = 6635, - [SMALL_STATE(645)] = 6738, - [SMALL_STATE(646)] = 6841, - [SMALL_STATE(647)] = 6944, - [SMALL_STATE(648)] = 7045, - [SMALL_STATE(649)] = 7148, - [SMALL_STATE(650)] = 7261, - [SMALL_STATE(651)] = 7364, - [SMALL_STATE(652)] = 7467, - [SMALL_STATE(653)] = 7570, - [SMALL_STATE(654)] = 7673, - [SMALL_STATE(655)] = 7774, - [SMALL_STATE(656)] = 7875, - [SMALL_STATE(657)] = 7976, - [SMALL_STATE(658)] = 8077, - [SMALL_STATE(659)] = 8178, - [SMALL_STATE(660)] = 8279, - [SMALL_STATE(661)] = 8380, - [SMALL_STATE(662)] = 8481, - [SMALL_STATE(663)] = 8582, - [SMALL_STATE(664)] = 8683, - [SMALL_STATE(665)] = 8784, - [SMALL_STATE(666)] = 8887, - [SMALL_STATE(667)] = 8988, - [SMALL_STATE(668)] = 9089, - [SMALL_STATE(669)] = 9190, - [SMALL_STATE(670)] = 9291, - [SMALL_STATE(671)] = 9392, - [SMALL_STATE(672)] = 9495, - [SMALL_STATE(673)] = 9598, - [SMALL_STATE(674)] = 9699, - [SMALL_STATE(675)] = 9800, - [SMALL_STATE(676)] = 9903, - [SMALL_STATE(677)] = 10006, - [SMALL_STATE(678)] = 10109, - [SMALL_STATE(679)] = 10210, - [SMALL_STATE(680)] = 10311, - [SMALL_STATE(681)] = 10412, - [SMALL_STATE(682)] = 10515, - [SMALL_STATE(683)] = 10616, - [SMALL_STATE(684)] = 10717, - [SMALL_STATE(685)] = 10818, - [SMALL_STATE(686)] = 10921, - [SMALL_STATE(687)] = 11024, - [SMALL_STATE(688)] = 11125, - [SMALL_STATE(689)] = 11228, - [SMALL_STATE(690)] = 11329, - [SMALL_STATE(691)] = 11432, - [SMALL_STATE(692)] = 11533, - [SMALL_STATE(693)] = 11634, - [SMALL_STATE(694)] = 11735, - [SMALL_STATE(695)] = 11838, - [SMALL_STATE(696)] = 11941, - [SMALL_STATE(697)] = 12042, - [SMALL_STATE(698)] = 12143, - [SMALL_STATE(699)] = 12244, - [SMALL_STATE(700)] = 12345, - [SMALL_STATE(701)] = 12446, - [SMALL_STATE(702)] = 12547, - [SMALL_STATE(703)] = 12648, - [SMALL_STATE(704)] = 12751, - [SMALL_STATE(705)] = 12852, - [SMALL_STATE(706)] = 12953, - [SMALL_STATE(707)] = 13054, - [SMALL_STATE(708)] = 13155, - [SMALL_STATE(709)] = 13256, - [SMALL_STATE(710)] = 13357, - [SMALL_STATE(711)] = 13460, - [SMALL_STATE(712)] = 13563, - [SMALL_STATE(713)] = 13666, - [SMALL_STATE(714)] = 13769, - [SMALL_STATE(715)] = 13870, - [SMALL_STATE(716)] = 13973, - [SMALL_STATE(717)] = 14074, - [SMALL_STATE(718)] = 14177, - [SMALL_STATE(719)] = 14280, - [SMALL_STATE(720)] = 14381, - [SMALL_STATE(721)] = 14482, - [SMALL_STATE(722)] = 14583, - [SMALL_STATE(723)] = 14684, - [SMALL_STATE(724)] = 14785, - [SMALL_STATE(725)] = 14888, - [SMALL_STATE(726)] = 14991, - [SMALL_STATE(727)] = 15094, - [SMALL_STATE(728)] = 15195, - [SMALL_STATE(729)] = 15296, - [SMALL_STATE(730)] = 15399, - [SMALL_STATE(731)] = 15502, - [SMALL_STATE(732)] = 15603, - [SMALL_STATE(733)] = 15704, - [SMALL_STATE(734)] = 15807, - [SMALL_STATE(735)] = 15910, - [SMALL_STATE(736)] = 16013, - [SMALL_STATE(737)] = 16116, - [SMALL_STATE(738)] = 16219, - [SMALL_STATE(739)] = 16322, - [SMALL_STATE(740)] = 16425, - [SMALL_STATE(741)] = 16528, - [SMALL_STATE(742)] = 16631, - [SMALL_STATE(743)] = 16734, - [SMALL_STATE(744)] = 16837, - [SMALL_STATE(745)] = 16940, - [SMALL_STATE(746)] = 17043, - [SMALL_STATE(747)] = 17146, - [SMALL_STATE(748)] = 17249, - [SMALL_STATE(749)] = 17352, - [SMALL_STATE(750)] = 17455, - [SMALL_STATE(751)] = 17558, - [SMALL_STATE(752)] = 17661, - [SMALL_STATE(753)] = 17764, - [SMALL_STATE(754)] = 17865, - [SMALL_STATE(755)] = 17968, - [SMALL_STATE(756)] = 18071, - [SMALL_STATE(757)] = 18174, - [SMALL_STATE(758)] = 18277, - [SMALL_STATE(759)] = 18380, - [SMALL_STATE(760)] = 18481, - [SMALL_STATE(761)] = 18584, - [SMALL_STATE(762)] = 18687, - [SMALL_STATE(763)] = 18790, - [SMALL_STATE(764)] = 18893, - [SMALL_STATE(765)] = 18996, - [SMALL_STATE(766)] = 19099, - [SMALL_STATE(767)] = 19202, - [SMALL_STATE(768)] = 19305, - [SMALL_STATE(769)] = 19406, - [SMALL_STATE(770)] = 19507, - [SMALL_STATE(771)] = 19610, - [SMALL_STATE(772)] = 19713, - [SMALL_STATE(773)] = 19816, - [SMALL_STATE(774)] = 19919, - [SMALL_STATE(775)] = 20020, - [SMALL_STATE(776)] = 20121, - [SMALL_STATE(777)] = 20222, - [SMALL_STATE(778)] = 20325, - [SMALL_STATE(779)] = 20428, - [SMALL_STATE(780)] = 20531, - [SMALL_STATE(781)] = 20634, - [SMALL_STATE(782)] = 20737, - [SMALL_STATE(783)] = 20840, - [SMALL_STATE(784)] = 20943, - [SMALL_STATE(785)] = 21046, - [SMALL_STATE(786)] = 21149, - [SMALL_STATE(787)] = 21252, - [SMALL_STATE(788)] = 21355, - [SMALL_STATE(789)] = 21458, - [SMALL_STATE(790)] = 21561, - [SMALL_STATE(791)] = 21664, - [SMALL_STATE(792)] = 21752, - [SMALL_STATE(793)] = 21823, - [SMALL_STATE(794)] = 21924, - [SMALL_STATE(795)] = 22025, - [SMALL_STATE(796)] = 22096, - [SMALL_STATE(797)] = 22197, - [SMALL_STATE(798)] = 22298, - [SMALL_STATE(799)] = 22399, - [SMALL_STATE(800)] = 22470, - [SMALL_STATE(801)] = 22538, - [SMALL_STATE(802)] = 22601, - [SMALL_STATE(803)] = 22664, - [SMALL_STATE(804)] = 22726, - [SMALL_STATE(805)] = 22788, - [SMALL_STATE(806)] = 22850, - [SMALL_STATE(807)] = 22912, - [SMALL_STATE(808)] = 22974, - [SMALL_STATE(809)] = 23036, - [SMALL_STATE(810)] = 23098, - [SMALL_STATE(811)] = 23160, - [SMALL_STATE(812)] = 23222, - [SMALL_STATE(813)] = 23284, - [SMALL_STATE(814)] = 23343, - [SMALL_STATE(815)] = 23402, - [SMALL_STATE(816)] = 23461, - [SMALL_STATE(817)] = 23526, - [SMALL_STATE(818)] = 23585, - [SMALL_STATE(819)] = 23677, - [SMALL_STATE(820)] = 23769, - [SMALL_STATE(821)] = 23827, - [SMALL_STATE(822)] = 23885, - [SMALL_STATE(823)] = 23977, - [SMALL_STATE(824)] = 24035, - [SMALL_STATE(825)] = 24127, - [SMALL_STATE(826)] = 24219, - [SMALL_STATE(827)] = 24311, - [SMALL_STATE(828)] = 24369, - [SMALL_STATE(829)] = 24427, - [SMALL_STATE(830)] = 24485, - [SMALL_STATE(831)] = 24577, - [SMALL_STATE(832)] = 24635, - [SMALL_STATE(833)] = 24727, - [SMALL_STATE(834)] = 24785, - [SMALL_STATE(835)] = 24877, - [SMALL_STATE(836)] = 24935, - [SMALL_STATE(837)] = 24993, - [SMALL_STATE(838)] = 25085, - [SMALL_STATE(839)] = 25177, - [SMALL_STATE(840)] = 25235, - [SMALL_STATE(841)] = 25327, - [SMALL_STATE(842)] = 25419, - [SMALL_STATE(843)] = 25477, - [SMALL_STATE(844)] = 25535, - [SMALL_STATE(845)] = 25627, - [SMALL_STATE(846)] = 25719, - [SMALL_STATE(847)] = 25811, - [SMALL_STATE(848)] = 25869, - [SMALL_STATE(849)] = 25961, - [SMALL_STATE(850)] = 26053, - [SMALL_STATE(851)] = 26147, - [SMALL_STATE(852)] = 26239, - [SMALL_STATE(853)] = 26331, - [SMALL_STATE(854)] = 26423, - [SMALL_STATE(855)] = 26481, - [SMALL_STATE(856)] = 26539, - [SMALL_STATE(857)] = 26628, - [SMALL_STATE(858)] = 26719, - [SMALL_STATE(859)] = 26776, - [SMALL_STATE(860)] = 26833, - [SMALL_STATE(861)] = 26900, - [SMALL_STATE(862)] = 26989, - [SMALL_STATE(863)] = 27046, - [SMALL_STATE(864)] = 27111, - [SMALL_STATE(865)] = 27176, - [SMALL_STATE(866)] = 27233, - [SMALL_STATE(867)] = 27300, - [SMALL_STATE(868)] = 27361, - [SMALL_STATE(869)] = 27428, - [SMALL_STATE(870)] = 27495, - [SMALL_STATE(871)] = 27562, - [SMALL_STATE(872)] = 27624, - [SMALL_STATE(873)] = 27686, - [SMALL_STATE(874)] = 27750, - [SMALL_STATE(875)] = 27812, - [SMALL_STATE(876)] = 27875, - [SMALL_STATE(877)] = 27934, - [SMALL_STATE(878)] = 27993, - [SMALL_STATE(879)] = 28052, - [SMALL_STATE(880)] = 28134, - [SMALL_STATE(881)] = 28216, - [SMALL_STATE(882)] = 28270, - [SMALL_STATE(883)] = 28352, - [SMALL_STATE(884)] = 28434, - [SMALL_STATE(885)] = 28516, - [SMALL_STATE(886)] = 28598, - [SMALL_STATE(887)] = 28680, - [SMALL_STATE(888)] = 28734, - [SMALL_STATE(889)] = 28816, - [SMALL_STATE(890)] = 28898, - [SMALL_STATE(891)] = 28980, - [SMALL_STATE(892)] = 29043, - [SMALL_STATE(893)] = 29106, - [SMALL_STATE(894)] = 29185, - [SMALL_STATE(895)] = 29248, - [SMALL_STATE(896)] = 29301, - [SMALL_STATE(897)] = 29364, - [SMALL_STATE(898)] = 29429, - [SMALL_STATE(899)] = 29492, - [SMALL_STATE(900)] = 29555, - [SMALL_STATE(901)] = 29618, - [SMALL_STATE(902)] = 29704, - [SMALL_STATE(903)] = 29780, - [SMALL_STATE(904)] = 29866, - [SMALL_STATE(905)] = 29952, - [SMALL_STATE(906)] = 30016, - [SMALL_STATE(907)] = 30098, - [SMALL_STATE(908)] = 30164, - [SMALL_STATE(909)] = 30224, - [SMALL_STATE(910)] = 30292, - [SMALL_STATE(911)] = 30364, - [SMALL_STATE(912)] = 30438, - [SMALL_STATE(913)] = 30518, - [SMALL_STATE(914)] = 30596, - [SMALL_STATE(915)] = 30681, - [SMALL_STATE(916)] = 30766, - [SMALL_STATE(917)] = 30821, - [SMALL_STATE(918)] = 30872, - [SMALL_STATE(919)] = 30923, - [SMALL_STATE(920)] = 30988, - [SMALL_STATE(921)] = 31055, - [SMALL_STATE(922)] = 31126, - [SMALL_STATE(923)] = 31199, - [SMALL_STATE(924)] = 31274, - [SMALL_STATE(925)] = 31351, - [SMALL_STATE(926)] = 31430, - [SMALL_STATE(927)] = 31515, - [SMALL_STATE(928)] = 31566, - [SMALL_STATE(929)] = 31647, - [SMALL_STATE(930)] = 31698, - [SMALL_STATE(931)] = 31749, - [SMALL_STATE(932)] = 31812, - [SMALL_STATE(933)] = 31870, - [SMALL_STATE(934)] = 31930, - [SMALL_STATE(935)] = 32014, - [SMALL_STATE(936)] = 32074, - [SMALL_STATE(937)] = 32136, - [SMALL_STATE(938)] = 32216, - [SMALL_STATE(939)] = 32294, - [SMALL_STATE(940)] = 32370, - [SMALL_STATE(941)] = 32444, - [SMALL_STATE(942)] = 32516, - [SMALL_STATE(943)] = 32586, - [SMALL_STATE(944)] = 32652, - [SMALL_STATE(945)] = 32716, - [SMALL_STATE(946)] = 32800, - [SMALL_STATE(947)] = 32884, - [SMALL_STATE(948)] = 32938, - [SMALL_STATE(949)] = 32998, - [SMALL_STATE(950)] = 33058, - [SMALL_STATE(951)] = 33118, - [SMALL_STATE(952)] = 33167, - [SMALL_STATE(953)] = 33216, - [SMALL_STATE(954)] = 33265, - [SMALL_STATE(955)] = 33314, - [SMALL_STATE(956)] = 33363, - [SMALL_STATE(957)] = 33412, - [SMALL_STATE(958)] = 33461, - [SMALL_STATE(959)] = 33510, - [SMALL_STATE(960)] = 33559, - [SMALL_STATE(961)] = 33608, - [SMALL_STATE(962)] = 33657, - [SMALL_STATE(963)] = 33706, - [SMALL_STATE(964)] = 33755, - [SMALL_STATE(965)] = 33804, - [SMALL_STATE(966)] = 33853, - [SMALL_STATE(967)] = 33902, - [SMALL_STATE(968)] = 33951, - [SMALL_STATE(969)] = 34000, - [SMALL_STATE(970)] = 34049, - [SMALL_STATE(971)] = 34098, - [SMALL_STATE(972)] = 34147, - [SMALL_STATE(973)] = 34196, - [SMALL_STATE(974)] = 34245, - [SMALL_STATE(975)] = 34294, - [SMALL_STATE(976)] = 34343, - [SMALL_STATE(977)] = 34392, - [SMALL_STATE(978)] = 34441, - [SMALL_STATE(979)] = 34490, - [SMALL_STATE(980)] = 34539, - [SMALL_STATE(981)] = 34588, - [SMALL_STATE(982)] = 34637, - [SMALL_STATE(983)] = 34686, - [SMALL_STATE(984)] = 34735, - [SMALL_STATE(985)] = 34784, - [SMALL_STATE(986)] = 34833, - [SMALL_STATE(987)] = 34882, - [SMALL_STATE(988)] = 34931, - [SMALL_STATE(989)] = 34980, - [SMALL_STATE(990)] = 35029, - [SMALL_STATE(991)] = 35078, - [SMALL_STATE(992)] = 35127, - [SMALL_STATE(993)] = 35176, - [SMALL_STATE(994)] = 35225, - [SMALL_STATE(995)] = 35274, - [SMALL_STATE(996)] = 35327, - [SMALL_STATE(997)] = 35376, - [SMALL_STATE(998)] = 35451, - [SMALL_STATE(999)] = 35510, - [SMALL_STATE(1000)] = 35557, - [SMALL_STATE(1001)] = 35604, - [SMALL_STATE(1002)] = 35651, - [SMALL_STATE(1003)] = 35698, - [SMALL_STATE(1004)] = 35745, - [SMALL_STATE(1005)] = 35792, - [SMALL_STATE(1006)] = 35839, - [SMALL_STATE(1007)] = 35894, - [SMALL_STATE(1008)] = 35941, - [SMALL_STATE(1009)] = 35988, - [SMALL_STATE(1010)] = 36035, - [SMALL_STATE(1011)] = 36082, - [SMALL_STATE(1012)] = 36129, - [SMALL_STATE(1013)] = 36176, - [SMALL_STATE(1014)] = 36235, - [SMALL_STATE(1015)] = 36282, - [SMALL_STATE(1016)] = 36329, - [SMALL_STATE(1017)] = 36382, - [SMALL_STATE(1018)] = 36441, - [SMALL_STATE(1019)] = 36496, - [SMALL_STATE(1020)] = 36579, - [SMALL_STATE(1021)] = 36638, - [SMALL_STATE(1022)] = 36693, - [SMALL_STATE(1023)] = 36740, - [SMALL_STATE(1024)] = 36819, - [SMALL_STATE(1025)] = 36872, - [SMALL_STATE(1026)] = 36931, - [SMALL_STATE(1027)] = 36988, - [SMALL_STATE(1028)] = 37043, - [SMALL_STATE(1029)] = 37090, - [SMALL_STATE(1030)] = 37137, - [SMALL_STATE(1031)] = 37184, - [SMALL_STATE(1032)] = 37231, - [SMALL_STATE(1033)] = 37314, - [SMALL_STATE(1034)] = 37397, - [SMALL_STATE(1035)] = 37460, - [SMALL_STATE(1036)] = 37525, - [SMALL_STATE(1037)] = 37594, - [SMALL_STATE(1038)] = 37665, - [SMALL_STATE(1039)] = 37738, - [SMALL_STATE(1040)] = 37815, - [SMALL_STATE(1041)] = 37894, - [SMALL_STATE(1042)] = 37949, - [SMALL_STATE(1043)] = 38010, - [SMALL_STATE(1044)] = 38056, - [SMALL_STATE(1045)] = 38102, - [SMALL_STATE(1046)] = 38148, - [SMALL_STATE(1047)] = 38198, - [SMALL_STATE(1048)] = 38244, - [SMALL_STATE(1049)] = 38290, - [SMALL_STATE(1050)] = 38339, - [SMALL_STATE(1051)] = 38384, - [SMALL_STATE(1052)] = 38441, - [SMALL_STATE(1053)] = 38498, - [SMALL_STATE(1054)] = 38543, - [SMALL_STATE(1055)] = 38592, - [SMALL_STATE(1056)] = 38637, - [SMALL_STATE(1057)] = 38682, - [SMALL_STATE(1058)] = 38727, - [SMALL_STATE(1059)] = 38772, - [SMALL_STATE(1060)] = 38817, - [SMALL_STATE(1061)] = 38866, - [SMALL_STATE(1062)] = 38911, - [SMALL_STATE(1063)] = 38956, - [SMALL_STATE(1064)] = 39001, - [SMALL_STATE(1065)] = 39046, - [SMALL_STATE(1066)] = 39091, - [SMALL_STATE(1067)] = 39136, - [SMALL_STATE(1068)] = 39181, - [SMALL_STATE(1069)] = 39226, - [SMALL_STATE(1070)] = 39275, - [SMALL_STATE(1071)] = 39320, - [SMALL_STATE(1072)] = 39365, - [SMALL_STATE(1073)] = 39414, - [SMALL_STATE(1074)] = 39471, - [SMALL_STATE(1075)] = 39520, - [SMALL_STATE(1076)] = 39569, - [SMALL_STATE(1077)] = 39618, - [SMALL_STATE(1078)] = 39663, - [SMALL_STATE(1079)] = 39712, - [SMALL_STATE(1080)] = 39757, - [SMALL_STATE(1081)] = 39802, - [SMALL_STATE(1082)] = 39851, - [SMALL_STATE(1083)] = 39900, - [SMALL_STATE(1084)] = 39945, - [SMALL_STATE(1085)] = 39990, - [SMALL_STATE(1086)] = 40035, - [SMALL_STATE(1087)] = 40084, - [SMALL_STATE(1088)] = 40133, - [SMALL_STATE(1089)] = 40178, - [SMALL_STATE(1090)] = 40223, - [SMALL_STATE(1091)] = 40268, - [SMALL_STATE(1092)] = 40317, - [SMALL_STATE(1093)] = 40362, - [SMALL_STATE(1094)] = 40407, - [SMALL_STATE(1095)] = 40452, - [SMALL_STATE(1096)] = 40497, - [SMALL_STATE(1097)] = 40542, - [SMALL_STATE(1098)] = 40587, - [SMALL_STATE(1099)] = 40632, - [SMALL_STATE(1100)] = 40677, - [SMALL_STATE(1101)] = 40722, - [SMALL_STATE(1102)] = 40767, - [SMALL_STATE(1103)] = 40816, - [SMALL_STATE(1104)] = 40865, - [SMALL_STATE(1105)] = 40922, - [SMALL_STATE(1106)] = 40966, - [SMALL_STATE(1107)] = 41014, - [SMALL_STATE(1108)] = 41062, - [SMALL_STATE(1109)] = 41106, - [SMALL_STATE(1110)] = 41154, - [SMALL_STATE(1111)] = 41198, - [SMALL_STATE(1112)] = 41246, - [SMALL_STATE(1113)] = 41290, - [SMALL_STATE(1114)] = 41334, - [SMALL_STATE(1115)] = 41378, - [SMALL_STATE(1116)] = 41426, - [SMALL_STATE(1117)] = 41474, - [SMALL_STATE(1118)] = 41518, - [SMALL_STATE(1119)] = 41570, - [SMALL_STATE(1120)] = 41614, - [SMALL_STATE(1121)] = 41662, - [SMALL_STATE(1122)] = 41706, - [SMALL_STATE(1123)] = 41750, - [SMALL_STATE(1124)] = 41794, - [SMALL_STATE(1125)] = 41838, - [SMALL_STATE(1126)] = 41888, - [SMALL_STATE(1127)] = 41932, - [SMALL_STATE(1128)] = 41976, - [SMALL_STATE(1129)] = 42020, - [SMALL_STATE(1130)] = 42064, - [SMALL_STATE(1131)] = 42108, - [SMALL_STATE(1132)] = 42152, - [SMALL_STATE(1133)] = 42202, - [SMALL_STATE(1134)] = 42246, - [SMALL_STATE(1135)] = 42290, - [SMALL_STATE(1136)] = 42334, - [SMALL_STATE(1137)] = 42378, - [SMALL_STATE(1138)] = 42422, - [SMALL_STATE(1139)] = 42466, - [SMALL_STATE(1140)] = 42510, - [SMALL_STATE(1141)] = 42554, - [SMALL_STATE(1142)] = 42598, - [SMALL_STATE(1143)] = 42642, - [SMALL_STATE(1144)] = 42686, - [SMALL_STATE(1145)] = 42730, - [SMALL_STATE(1146)] = 42774, - [SMALL_STATE(1147)] = 42818, - [SMALL_STATE(1148)] = 42862, - [SMALL_STATE(1149)] = 42931, - [SMALL_STATE(1150)] = 42986, - [SMALL_STATE(1151)] = 43055, - [SMALL_STATE(1152)] = 43124, - [SMALL_STATE(1153)] = 43193, - [SMALL_STATE(1154)] = 43245, - [SMALL_STATE(1155)] = 43301, - [SMALL_STATE(1156)] = 43353, - [SMALL_STATE(1157)] = 43409, - [SMALL_STATE(1158)] = 43465, - [SMALL_STATE(1159)] = 43521, - [SMALL_STATE(1160)] = 43577, - [SMALL_STATE(1161)] = 43627, - [SMALL_STATE(1162)] = 43696, - [SMALL_STATE(1163)] = 43773, - [SMALL_STATE(1164)] = 43828, - [SMALL_STATE(1165)] = 43885, - [SMALL_STATE(1166)] = 43962, - [SMALL_STATE(1167)] = 44021, - [SMALL_STATE(1168)] = 44084, - [SMALL_STATE(1169)] = 44149, - [SMALL_STATE(1170)] = 44198, - [SMALL_STATE(1171)] = 44265, - [SMALL_STATE(1172)] = 44342, - [SMALL_STATE(1173)] = 44413, - [SMALL_STATE(1174)] = 44490, - [SMALL_STATE(1175)] = 44563, - [SMALL_STATE(1176)] = 44603, - [SMALL_STATE(1177)] = 44659, - [SMALL_STATE(1178)] = 44699, - [SMALL_STATE(1179)] = 44773, - [SMALL_STATE(1180)] = 44815, - [SMALL_STATE(1181)] = 44857, - [SMALL_STATE(1182)] = 44897, - [SMALL_STATE(1183)] = 44939, - [SMALL_STATE(1184)] = 44981, - [SMALL_STATE(1185)] = 45021, - [SMALL_STATE(1186)] = 45061, - [SMALL_STATE(1187)] = 45101, - [SMALL_STATE(1188)] = 45175, - [SMALL_STATE(1189)] = 45249, - [SMALL_STATE(1190)] = 45289, - [SMALL_STATE(1191)] = 45329, - [SMALL_STATE(1192)] = 45383, - [SMALL_STATE(1193)] = 45451, - [SMALL_STATE(1194)] = 45509, - [SMALL_STATE(1195)] = 45551, - [SMALL_STATE(1196)] = 45613, - [SMALL_STATE(1197)] = 45677, - [SMALL_STATE(1198)] = 45743, - [SMALL_STATE(1199)] = 45813, - [SMALL_STATE(1200)] = 45881, - [SMALL_STATE(1201)] = 45921, - [SMALL_STATE(1202)] = 45984, - [SMALL_STATE(1203)] = 46037, - [SMALL_STATE(1204)] = 46080, - [SMALL_STATE(1205)] = 46153, - [SMALL_STATE(1206)] = 46216, - [SMALL_STATE(1207)] = 46289, - [SMALL_STATE(1208)] = 46362, - [SMALL_STATE(1209)] = 46405, - [SMALL_STATE(1210)] = 46448, - [SMALL_STATE(1211)] = 46487, - [SMALL_STATE(1212)] = 46542, - [SMALL_STATE(1213)] = 46599, - [SMALL_STATE(1214)] = 46672, - [SMALL_STATE(1215)] = 46733, - [SMALL_STATE(1216)] = 46798, - [SMALL_STATE(1217)] = 46865, - [SMALL_STATE(1218)] = 46932, - [SMALL_STATE(1219)] = 47001, - [SMALL_STATE(1220)] = 47039, - [SMALL_STATE(1221)] = 47077, - [SMALL_STATE(1222)] = 47137, - [SMALL_STATE(1223)] = 47197, - [SMALL_STATE(1224)] = 47257, - [SMALL_STATE(1225)] = 47295, - [SMALL_STATE(1226)] = 47355, - [SMALL_STATE(1227)] = 47415, - [SMALL_STATE(1228)] = 47475, - [SMALL_STATE(1229)] = 47535, - [SMALL_STATE(1230)] = 47595, - [SMALL_STATE(1231)] = 47633, - [SMALL_STATE(1232)] = 47708, - [SMALL_STATE(1233)] = 47779, - [SMALL_STATE(1234)] = 47854, - [SMALL_STATE(1235)] = 47929, - [SMALL_STATE(1236)] = 48002, - [SMALL_STATE(1237)] = 48077, - [SMALL_STATE(1238)] = 48152, - [SMALL_STATE(1239)] = 48227, - [SMALL_STATE(1240)] = 48302, - [SMALL_STATE(1241)] = 48377, - [SMALL_STATE(1242)] = 48449, - [SMALL_STATE(1243)] = 48521, - [SMALL_STATE(1244)] = 48593, - [SMALL_STATE(1245)] = 48665, - [SMALL_STATE(1246)] = 48721, - [SMALL_STATE(1247)] = 48777, - [SMALL_STATE(1248)] = 48833, - [SMALL_STATE(1249)] = 48893, - [SMALL_STATE(1250)] = 48955, - [SMALL_STATE(1251)] = 49027, - [SMALL_STATE(1252)] = 49091, - [SMALL_STATE(1253)] = 49163, - [SMALL_STATE(1254)] = 49235, - [SMALL_STATE(1255)] = 49307, - [SMALL_STATE(1256)] = 49373, - [SMALL_STATE(1257)] = 49439, - [SMALL_STATE(1258)] = 49511, - [SMALL_STATE(1259)] = 49583, - [SMALL_STATE(1260)] = 49657, - [SMALL_STATE(1261)] = 49729, - [SMALL_STATE(1262)] = 49801, - [SMALL_STATE(1263)] = 49873, - [SMALL_STATE(1264)] = 49945, - [SMALL_STATE(1265)] = 50017, - [SMALL_STATE(1266)] = 50085, - [SMALL_STATE(1267)] = 50155, - [SMALL_STATE(1268)] = 50211, - [SMALL_STATE(1269)] = 50283, - [SMALL_STATE(1270)] = 50339, - [SMALL_STATE(1271)] = 50391, - [SMALL_STATE(1272)] = 50463, - [SMALL_STATE(1273)] = 50519, - [SMALL_STATE(1274)] = 50575, - [SMALL_STATE(1275)] = 50631, - [SMALL_STATE(1276)] = 50703, - [SMALL_STATE(1277)] = 50759, - [SMALL_STATE(1278)] = 50815, - [SMALL_STATE(1279)] = 50887, - [SMALL_STATE(1280)] = 50959, - [SMALL_STATE(1281)] = 51013, - [SMALL_STATE(1282)] = 51085, - [SMALL_STATE(1283)] = 51155, - [SMALL_STATE(1284)] = 51211, - [SMALL_STATE(1285)] = 51283, - [SMALL_STATE(1286)] = 51339, - [SMALL_STATE(1287)] = 51395, - [SMALL_STATE(1288)] = 51451, - [SMALL_STATE(1289)] = 51521, - [SMALL_STATE(1290)] = 51591, - [SMALL_STATE(1291)] = 51663, - [SMALL_STATE(1292)] = 51733, - [SMALL_STATE(1293)] = 51805, - [SMALL_STATE(1294)] = 51861, - [SMALL_STATE(1295)] = 51933, - [SMALL_STATE(1296)] = 52003, - [SMALL_STATE(1297)] = 52059, - [SMALL_STATE(1298)] = 52131, - [SMALL_STATE(1299)] = 52187, - [SMALL_STATE(1300)] = 52257, - [SMALL_STATE(1301)] = 52313, - [SMALL_STATE(1302)] = 52383, - [SMALL_STATE(1303)] = 52439, - [SMALL_STATE(1304)] = 52508, - [SMALL_STATE(1305)] = 52577, - [SMALL_STATE(1306)] = 52646, - [SMALL_STATE(1307)] = 52715, - [SMALL_STATE(1308)] = 52784, - [SMALL_STATE(1309)] = 52853, - [SMALL_STATE(1310)] = 52922, - [SMALL_STATE(1311)] = 52991, - [SMALL_STATE(1312)] = 53060, - [SMALL_STATE(1313)] = 53129, - [SMALL_STATE(1314)] = 53198, - [SMALL_STATE(1315)] = 53267, - [SMALL_STATE(1316)] = 53320, - [SMALL_STATE(1317)] = 53373, - [SMALL_STATE(1318)] = 53442, - [SMALL_STATE(1319)] = 53511, - [SMALL_STATE(1320)] = 53580, - [SMALL_STATE(1321)] = 53649, - [SMALL_STATE(1322)] = 53718, - [SMALL_STATE(1323)] = 53787, - [SMALL_STATE(1324)] = 53856, - [SMALL_STATE(1325)] = 53909, - [SMALL_STATE(1326)] = 53978, - [SMALL_STATE(1327)] = 54047, - [SMALL_STATE(1328)] = 54116, - [SMALL_STATE(1329)] = 54185, - [SMALL_STATE(1330)] = 54254, - [SMALL_STATE(1331)] = 54323, - [SMALL_STATE(1332)] = 54392, - [SMALL_STATE(1333)] = 54445, - [SMALL_STATE(1334)] = 54514, - [SMALL_STATE(1335)] = 54583, - [SMALL_STATE(1336)] = 54652, - [SMALL_STATE(1337)] = 54705, - [SMALL_STATE(1338)] = 54774, - [SMALL_STATE(1339)] = 54827, - [SMALL_STATE(1340)] = 54896, - [SMALL_STATE(1341)] = 54935, - [SMALL_STATE(1342)] = 54977, - [SMALL_STATE(1343)] = 55013, - [SMALL_STATE(1344)] = 55057, - [SMALL_STATE(1345)] = 55123, - [SMALL_STATE(1346)] = 55165, - [SMALL_STATE(1347)] = 55201, - [SMALL_STATE(1348)] = 55237, - [SMALL_STATE(1349)] = 55273, - [SMALL_STATE(1350)] = 55320, - [SMALL_STATE(1351)] = 55351, - [SMALL_STATE(1352)] = 55398, - [SMALL_STATE(1353)] = 55445, - [SMALL_STATE(1354)] = 55492, - [SMALL_STATE(1355)] = 55539, - [SMALL_STATE(1356)] = 55586, - [SMALL_STATE(1357)] = 55617, - [SMALL_STATE(1358)] = 55661, - [SMALL_STATE(1359)] = 55705, - [SMALL_STATE(1360)] = 55741, - [SMALL_STATE(1361)] = 55785, - [SMALL_STATE(1362)] = 55819, - [SMALL_STATE(1363)] = 55863, - [SMALL_STATE(1364)] = 55901, - [SMALL_STATE(1365)] = 55945, - [SMALL_STATE(1366)] = 55989, - [SMALL_STATE(1367)] = 56032, - [SMALL_STATE(1368)] = 56087, - [SMALL_STATE(1369)] = 56142, - [SMALL_STATE(1370)] = 56197, - [SMALL_STATE(1371)] = 56230, - [SMALL_STATE(1372)] = 56273, - [SMALL_STATE(1373)] = 56316, - [SMALL_STATE(1374)] = 56356, - [SMALL_STATE(1375)] = 56396, - [SMALL_STATE(1376)] = 56428, - [SMALL_STATE(1377)] = 56468, - [SMALL_STATE(1378)] = 56508, - [SMALL_STATE(1379)] = 56548, - [SMALL_STATE(1380)] = 56588, - [SMALL_STATE(1381)] = 56628, - [SMALL_STATE(1382)] = 56668, - [SMALL_STATE(1383)] = 56708, - [SMALL_STATE(1384)] = 56748, - [SMALL_STATE(1385)] = 56788, - [SMALL_STATE(1386)] = 56828, - [SMALL_STATE(1387)] = 56868, - [SMALL_STATE(1388)] = 56908, - [SMALL_STATE(1389)] = 56948, - [SMALL_STATE(1390)] = 56996, - [SMALL_STATE(1391)] = 57036, - [SMALL_STATE(1392)] = 57076, - [SMALL_STATE(1393)] = 57116, - [SMALL_STATE(1394)] = 57156, - [SMALL_STATE(1395)] = 57188, - [SMALL_STATE(1396)] = 57228, - [SMALL_STATE(1397)] = 57268, - [SMALL_STATE(1398)] = 57304, - [SMALL_STATE(1399)] = 57332, - [SMALL_STATE(1400)] = 57372, - [SMALL_STATE(1401)] = 57412, - [SMALL_STATE(1402)] = 57444, - [SMALL_STATE(1403)] = 57494, - [SMALL_STATE(1404)] = 57540, - [SMALL_STATE(1405)] = 57572, - [SMALL_STATE(1406)] = 57612, - [SMALL_STATE(1407)] = 57640, - [SMALL_STATE(1408)] = 57680, - [SMALL_STATE(1409)] = 57708, - [SMALL_STATE(1410)] = 57736, - [SMALL_STATE(1411)] = 57768, - [SMALL_STATE(1412)] = 57808, - [SMALL_STATE(1413)] = 57848, - [SMALL_STATE(1414)] = 57876, - [SMALL_STATE(1415)] = 57924, - [SMALL_STATE(1416)] = 57964, - [SMALL_STATE(1417)] = 58004, - [SMALL_STATE(1418)] = 58044, - [SMALL_STATE(1419)] = 58084, - [SMALL_STATE(1420)] = 58124, - [SMALL_STATE(1421)] = 58164, - [SMALL_STATE(1422)] = 58204, - [SMALL_STATE(1423)] = 58244, - [SMALL_STATE(1424)] = 58284, - [SMALL_STATE(1425)] = 58318, - [SMALL_STATE(1426)] = 58358, - [SMALL_STATE(1427)] = 58402, - [SMALL_STATE(1428)] = 58430, - [SMALL_STATE(1429)] = 58470, - [SMALL_STATE(1430)] = 58510, - [SMALL_STATE(1431)] = 58552, - [SMALL_STATE(1432)] = 58592, - [SMALL_STATE(1433)] = 58638, - [SMALL_STATE(1434)] = 58678, - [SMALL_STATE(1435)] = 58718, - [SMALL_STATE(1436)] = 58753, - [SMALL_STATE(1437)] = 58798, - [SMALL_STATE(1438)] = 58825, - [SMALL_STATE(1439)] = 58874, - [SMALL_STATE(1440)] = 58919, - [SMALL_STATE(1441)] = 58946, - [SMALL_STATE(1442)] = 58991, - [SMALL_STATE(1443)] = 59018, - [SMALL_STATE(1444)] = 59063, - [SMALL_STATE(1445)] = 59106, - [SMALL_STATE(1446)] = 59135, - [SMALL_STATE(1447)] = 59180, - [SMALL_STATE(1448)] = 59225, - [SMALL_STATE(1449)] = 59266, - [SMALL_STATE(1450)] = 59293, - [SMALL_STATE(1451)] = 59332, - [SMALL_STATE(1452)] = 59367, - [SMALL_STATE(1453)] = 59394, - [SMALL_STATE(1454)] = 59439, - [SMALL_STATE(1455)] = 59466, - [SMALL_STATE(1456)] = 59503, - [SMALL_STATE(1457)] = 59530, - [SMALL_STATE(1458)] = 59557, - [SMALL_STATE(1459)] = 59602, - [SMALL_STATE(1460)] = 59647, - [SMALL_STATE(1461)] = 59674, - [SMALL_STATE(1462)] = 59705, - [SMALL_STATE(1463)] = 59738, - [SMALL_STATE(1464)] = 59769, - [SMALL_STATE(1465)] = 59802, - [SMALL_STATE(1466)] = 59833, - [SMALL_STATE(1467)] = 59864, - [SMALL_STATE(1468)] = 59895, - [SMALL_STATE(1469)] = 59940, - [SMALL_STATE(1470)] = 59971, - [SMALL_STATE(1471)] = 60016, - [SMALL_STATE(1472)] = 60061, - [SMALL_STATE(1473)] = 60110, - [SMALL_STATE(1474)] = 60141, - [SMALL_STATE(1475)] = 60186, - [SMALL_STATE(1476)] = 60217, - [SMALL_STATE(1477)] = 60248, - [SMALL_STATE(1478)] = 60293, - [SMALL_STATE(1479)] = 60338, - [SMALL_STATE(1480)] = 60383, - [SMALL_STATE(1481)] = 60428, - [SMALL_STATE(1482)] = 60455, - [SMALL_STATE(1483)] = 60496, - [SMALL_STATE(1484)] = 60537, - [SMALL_STATE(1485)] = 60578, - [SMALL_STATE(1486)] = 60619, - [SMALL_STATE(1487)] = 60660, - [SMALL_STATE(1488)] = 60701, - [SMALL_STATE(1489)] = 60742, - [SMALL_STATE(1490)] = 60777, - [SMALL_STATE(1491)] = 60818, - [SMALL_STATE(1492)] = 60859, - [SMALL_STATE(1493)] = 60900, - [SMALL_STATE(1494)] = 60938, - [SMALL_STATE(1495)] = 60978, - [SMALL_STATE(1496)] = 61012, - [SMALL_STATE(1497)] = 61050, - [SMALL_STATE(1498)] = 61079, - [SMALL_STATE(1499)] = 61116, - [SMALL_STATE(1500)] = 61157, - [SMALL_STATE(1501)] = 61200, - [SMALL_STATE(1502)] = 61239, - [SMALL_STATE(1503)] = 61282, - [SMALL_STATE(1504)] = 61323, - [SMALL_STATE(1505)] = 61366, - [SMALL_STATE(1506)] = 61407, - [SMALL_STATE(1507)] = 61450, - [SMALL_STATE(1508)] = 61491, - [SMALL_STATE(1509)] = 61520, - [SMALL_STATE(1510)] = 61563, - [SMALL_STATE(1511)] = 61592, - [SMALL_STATE(1512)] = 61621, - [SMALL_STATE(1513)] = 61661, - [SMALL_STATE(1514)] = 61701, - [SMALL_STATE(1515)] = 61741, - [SMALL_STATE(1516)] = 61767, - [SMALL_STATE(1517)] = 61807, - [SMALL_STATE(1518)] = 61847, - [SMALL_STATE(1519)] = 61887, - [SMALL_STATE(1520)] = 61927, - [SMALL_STATE(1521)] = 61967, - [SMALL_STATE(1522)] = 62007, - [SMALL_STATE(1523)] = 62047, - [SMALL_STATE(1524)] = 62087, - [SMALL_STATE(1525)] = 62127, - [SMALL_STATE(1526)] = 62167, - [SMALL_STATE(1527)] = 62188, - [SMALL_STATE(1528)] = 62209, - [SMALL_STATE(1529)] = 62238, - [SMALL_STATE(1530)] = 62271, - [SMALL_STATE(1531)] = 62292, - [SMALL_STATE(1532)] = 62321, - [SMALL_STATE(1533)] = 62346, - [SMALL_STATE(1534)] = 62375, - [SMALL_STATE(1535)] = 62404, - [SMALL_STATE(1536)] = 62437, - [SMALL_STATE(1537)] = 62469, - [SMALL_STATE(1538)] = 62501, - [SMALL_STATE(1539)] = 62525, - [SMALL_STATE(1540)] = 62557, - [SMALL_STATE(1541)] = 62593, - [SMALL_STATE(1542)] = 62625, - [SMALL_STATE(1543)] = 62657, - [SMALL_STATE(1544)] = 62686, - [SMALL_STATE(1545)] = 62713, - [SMALL_STATE(1546)] = 62742, - [SMALL_STATE(1547)] = 62767, - [SMALL_STATE(1548)] = 62800, - [SMALL_STATE(1549)] = 62833, - [SMALL_STATE(1550)] = 62860, - [SMALL_STATE(1551)] = 62889, - [SMALL_STATE(1552)] = 62920, - [SMALL_STATE(1553)] = 62947, - [SMALL_STATE(1554)] = 62976, - [SMALL_STATE(1555)] = 63005, - [SMALL_STATE(1556)] = 63034, - [SMALL_STATE(1557)] = 63065, - [SMALL_STATE(1558)] = 63094, - [SMALL_STATE(1559)] = 63125, - [SMALL_STATE(1560)] = 63154, - [SMALL_STATE(1561)] = 63183, - [SMALL_STATE(1562)] = 63210, - [SMALL_STATE(1563)] = 63243, - [SMALL_STATE(1564)] = 63272, - [SMALL_STATE(1565)] = 63294, - [SMALL_STATE(1566)] = 63324, - [SMALL_STATE(1567)] = 63348, - [SMALL_STATE(1568)] = 63374, - [SMALL_STATE(1569)] = 63392, - [SMALL_STATE(1570)] = 63410, - [SMALL_STATE(1571)] = 63436, - [SMALL_STATE(1572)] = 63468, - [SMALL_STATE(1573)] = 63500, - [SMALL_STATE(1574)] = 63532, - [SMALL_STATE(1575)] = 63550, - [SMALL_STATE(1576)] = 63568, - [SMALL_STATE(1577)] = 63600, - [SMALL_STATE(1578)] = 63618, - [SMALL_STATE(1579)] = 63636, - [SMALL_STATE(1580)] = 63662, - [SMALL_STATE(1581)] = 63694, - [SMALL_STATE(1582)] = 63718, - [SMALL_STATE(1583)] = 63744, - [SMALL_STATE(1584)] = 63765, - [SMALL_STATE(1585)] = 63784, - [SMALL_STATE(1586)] = 63805, - [SMALL_STATE(1587)] = 63834, - [SMALL_STATE(1588)] = 63863, - [SMALL_STATE(1589)] = 63888, - [SMALL_STATE(1590)] = 63909, - [SMALL_STATE(1591)] = 63930, - [SMALL_STATE(1592)] = 63959, - [SMALL_STATE(1593)] = 63988, - [SMALL_STATE(1594)] = 64017, - [SMALL_STATE(1595)] = 64038, - [SMALL_STATE(1596)] = 64059, - [SMALL_STATE(1597)] = 64088, - [SMALL_STATE(1598)] = 64117, - [SMALL_STATE(1599)] = 64146, - [SMALL_STATE(1600)] = 64167, - [SMALL_STATE(1601)] = 64196, - [SMALL_STATE(1602)] = 64225, - [SMALL_STATE(1603)] = 64246, - [SMALL_STATE(1604)] = 64267, - [SMALL_STATE(1605)] = 64288, - [SMALL_STATE(1606)] = 64312, - [SMALL_STATE(1607)] = 64336, - [SMALL_STATE(1608)] = 64360, - [SMALL_STATE(1609)] = 64386, - [SMALL_STATE(1610)] = 64412, - [SMALL_STATE(1611)] = 64434, - [SMALL_STATE(1612)] = 64454, - [SMALL_STATE(1613)] = 64470, - [SMALL_STATE(1614)] = 64486, - [SMALL_STATE(1615)] = 64502, - [SMALL_STATE(1616)] = 64528, - [SMALL_STATE(1617)] = 64548, - [SMALL_STATE(1618)] = 64574, - [SMALL_STATE(1619)] = 64590, - [SMALL_STATE(1620)] = 64608, - [SMALL_STATE(1621)] = 64632, - [SMALL_STATE(1622)] = 64658, - [SMALL_STATE(1623)] = 64682, - [SMALL_STATE(1624)] = 64708, - [SMALL_STATE(1625)] = 64734, - [SMALL_STATE(1626)] = 64752, - [SMALL_STATE(1627)] = 64768, - [SMALL_STATE(1628)] = 64784, - [SMALL_STATE(1629)] = 64810, - [SMALL_STATE(1630)] = 64834, - [SMALL_STATE(1631)] = 64860, - [SMALL_STATE(1632)] = 64886, - [SMALL_STATE(1633)] = 64912, - [SMALL_STATE(1634)] = 64928, - [SMALL_STATE(1635)] = 64944, - [SMALL_STATE(1636)] = 64964, - [SMALL_STATE(1637)] = 64987, - [SMALL_STATE(1638)] = 65004, - [SMALL_STATE(1639)] = 65021, - [SMALL_STATE(1640)] = 65036, - [SMALL_STATE(1641)] = 65059, - [SMALL_STATE(1642)] = 65078, - [SMALL_STATE(1643)] = 65093, - [SMALL_STATE(1644)] = 65108, - [SMALL_STATE(1645)] = 65127, - [SMALL_STATE(1646)] = 65142, - [SMALL_STATE(1647)] = 65159, - [SMALL_STATE(1648)] = 65174, - [SMALL_STATE(1649)] = 65189, - [SMALL_STATE(1650)] = 65206, - [SMALL_STATE(1651)] = 65231, - [SMALL_STATE(1652)] = 65246, - [SMALL_STATE(1653)] = 65261, - [SMALL_STATE(1654)] = 65276, - [SMALL_STATE(1655)] = 65299, - [SMALL_STATE(1656)] = 65322, - [SMALL_STATE(1657)] = 65342, - [SMALL_STATE(1658)] = 65356, - [SMALL_STATE(1659)] = 65370, - [SMALL_STATE(1660)] = 65384, - [SMALL_STATE(1661)] = 65400, - [SMALL_STATE(1662)] = 65414, - [SMALL_STATE(1663)] = 65430, - [SMALL_STATE(1664)] = 65444, - [SMALL_STATE(1665)] = 65464, - [SMALL_STATE(1666)] = 65482, - [SMALL_STATE(1667)] = 65496, - [SMALL_STATE(1668)] = 65512, - [SMALL_STATE(1669)] = 65532, - [SMALL_STATE(1670)] = 65548, - [SMALL_STATE(1671)] = 65568, - [SMALL_STATE(1672)] = 65586, - [SMALL_STATE(1673)] = 65600, - [SMALL_STATE(1674)] = 65614, - [SMALL_STATE(1675)] = 65628, - [SMALL_STATE(1676)] = 65648, - [SMALL_STATE(1677)] = 65662, - [SMALL_STATE(1678)] = 65676, - [SMALL_STATE(1679)] = 65692, - [SMALL_STATE(1680)] = 65710, - [SMALL_STATE(1681)] = 65728, - [SMALL_STATE(1682)] = 65748, - [SMALL_STATE(1683)] = 65764, - [SMALL_STATE(1684)] = 65778, - [SMALL_STATE(1685)] = 65796, - [SMALL_STATE(1686)] = 65810, - [SMALL_STATE(1687)] = 65824, - [SMALL_STATE(1688)] = 65838, - [SMALL_STATE(1689)] = 65852, - [SMALL_STATE(1690)] = 65866, - [SMALL_STATE(1691)] = 65886, - [SMALL_STATE(1692)] = 65904, - [SMALL_STATE(1693)] = 65922, - [SMALL_STATE(1694)] = 65935, - [SMALL_STATE(1695)] = 65954, - [SMALL_STATE(1696)] = 65965, - [SMALL_STATE(1697)] = 65980, - [SMALL_STATE(1698)] = 65991, - [SMALL_STATE(1699)] = 66002, - [SMALL_STATE(1700)] = 66013, - [SMALL_STATE(1701)] = 66024, - [SMALL_STATE(1702)] = 66043, - [SMALL_STATE(1703)] = 66062, - [SMALL_STATE(1704)] = 66073, - [SMALL_STATE(1705)] = 66090, - [SMALL_STATE(1706)] = 66101, - [SMALL_STATE(1707)] = 66112, - [SMALL_STATE(1708)] = 66123, - [SMALL_STATE(1709)] = 66140, - [SMALL_STATE(1710)] = 66151, - [SMALL_STATE(1711)] = 66162, - [SMALL_STATE(1712)] = 66173, - [SMALL_STATE(1713)] = 66187, - [SMALL_STATE(1714)] = 66197, - [SMALL_STATE(1715)] = 66211, - [SMALL_STATE(1716)] = 66227, - [SMALL_STATE(1717)] = 66241, - [SMALL_STATE(1718)] = 66255, - [SMALL_STATE(1719)] = 66271, - [SMALL_STATE(1720)] = 66285, - [SMALL_STATE(1721)] = 66295, - [SMALL_STATE(1722)] = 66309, - [SMALL_STATE(1723)] = 66325, - [SMALL_STATE(1724)] = 66339, - [SMALL_STATE(1725)] = 66353, - [SMALL_STATE(1726)] = 66369, - [SMALL_STATE(1727)] = 66383, - [SMALL_STATE(1728)] = 66397, - [SMALL_STATE(1729)] = 66411, - [SMALL_STATE(1730)] = 66425, - [SMALL_STATE(1731)] = 66439, - [SMALL_STATE(1732)] = 66453, - [SMALL_STATE(1733)] = 66467, - [SMALL_STATE(1734)] = 66481, - [SMALL_STATE(1735)] = 66495, - [SMALL_STATE(1736)] = 66509, - [SMALL_STATE(1737)] = 66523, - [SMALL_STATE(1738)] = 66539, - [SMALL_STATE(1739)] = 66555, - [SMALL_STATE(1740)] = 66569, - [SMALL_STATE(1741)] = 66583, - [SMALL_STATE(1742)] = 66597, - [SMALL_STATE(1743)] = 66611, - [SMALL_STATE(1744)] = 66625, - [SMALL_STATE(1745)] = 66639, - [SMALL_STATE(1746)] = 66653, - [SMALL_STATE(1747)] = 66667, - [SMALL_STATE(1748)] = 66681, - [SMALL_STATE(1749)] = 66695, - [SMALL_STATE(1750)] = 66711, - [SMALL_STATE(1751)] = 66725, - [SMALL_STATE(1752)] = 66739, - [SMALL_STATE(1753)] = 66753, - [SMALL_STATE(1754)] = 66767, - [SMALL_STATE(1755)] = 66781, - [SMALL_STATE(1756)] = 66797, - [SMALL_STATE(1757)] = 66813, - [SMALL_STATE(1758)] = 66827, - [SMALL_STATE(1759)] = 66843, - [SMALL_STATE(1760)] = 66857, - [SMALL_STATE(1761)] = 66871, - [SMALL_STATE(1762)] = 66887, - [SMALL_STATE(1763)] = 66903, - [SMALL_STATE(1764)] = 66917, - [SMALL_STATE(1765)] = 66931, - [SMALL_STATE(1766)] = 66945, - [SMALL_STATE(1767)] = 66959, - [SMALL_STATE(1768)] = 66975, - [SMALL_STATE(1769)] = 66989, - [SMALL_STATE(1770)] = 67005, - [SMALL_STATE(1771)] = 67021, - [SMALL_STATE(1772)] = 67035, - [SMALL_STATE(1773)] = 67049, - [SMALL_STATE(1774)] = 67063, - [SMALL_STATE(1775)] = 67077, - [SMALL_STATE(1776)] = 67091, - [SMALL_STATE(1777)] = 67105, - [SMALL_STATE(1778)] = 67121, - [SMALL_STATE(1779)] = 67131, - [SMALL_STATE(1780)] = 67147, - [SMALL_STATE(1781)] = 67163, - [SMALL_STATE(1782)] = 67177, - [SMALL_STATE(1783)] = 67193, - [SMALL_STATE(1784)] = 67209, - [SMALL_STATE(1785)] = 67225, - [SMALL_STATE(1786)] = 67241, - [SMALL_STATE(1787)] = 67254, - [SMALL_STATE(1788)] = 67267, - [SMALL_STATE(1789)] = 67280, - [SMALL_STATE(1790)] = 67293, - [SMALL_STATE(1791)] = 67302, - [SMALL_STATE(1792)] = 67311, - [SMALL_STATE(1793)] = 67324, - [SMALL_STATE(1794)] = 67337, - [SMALL_STATE(1795)] = 67350, - [SMALL_STATE(1796)] = 67363, - [SMALL_STATE(1797)] = 67376, - [SMALL_STATE(1798)] = 67389, - [SMALL_STATE(1799)] = 67402, - [SMALL_STATE(1800)] = 67415, - [SMALL_STATE(1801)] = 67428, - [SMALL_STATE(1802)] = 67441, - [SMALL_STATE(1803)] = 67454, - [SMALL_STATE(1804)] = 67467, - [SMALL_STATE(1805)] = 67478, - [SMALL_STATE(1806)] = 67491, - [SMALL_STATE(1807)] = 67504, - [SMALL_STATE(1808)] = 67517, - [SMALL_STATE(1809)] = 67528, - [SMALL_STATE(1810)] = 67541, - [SMALL_STATE(1811)] = 67554, - [SMALL_STATE(1812)] = 67565, - [SMALL_STATE(1813)] = 67578, - [SMALL_STATE(1814)] = 67591, - [SMALL_STATE(1815)] = 67604, - [SMALL_STATE(1816)] = 67617, - [SMALL_STATE(1817)] = 67630, - [SMALL_STATE(1818)] = 67643, - [SMALL_STATE(1819)] = 67654, - [SMALL_STATE(1820)] = 67663, - [SMALL_STATE(1821)] = 67676, - [SMALL_STATE(1822)] = 67689, - [SMALL_STATE(1823)] = 67698, - [SMALL_STATE(1824)] = 67711, - [SMALL_STATE(1825)] = 67724, - [SMALL_STATE(1826)] = 67737, - [SMALL_STATE(1827)] = 67750, - [SMALL_STATE(1828)] = 67763, - [SMALL_STATE(1829)] = 67776, - [SMALL_STATE(1830)] = 67789, - [SMALL_STATE(1831)] = 67802, - [SMALL_STATE(1832)] = 67815, - [SMALL_STATE(1833)] = 67828, - [SMALL_STATE(1834)] = 67841, - [SMALL_STATE(1835)] = 67854, - [SMALL_STATE(1836)] = 67867, - [SMALL_STATE(1837)] = 67880, - [SMALL_STATE(1838)] = 67889, - [SMALL_STATE(1839)] = 67902, - [SMALL_STATE(1840)] = 67915, - [SMALL_STATE(1841)] = 67928, - [SMALL_STATE(1842)] = 67941, - [SMALL_STATE(1843)] = 67954, - [SMALL_STATE(1844)] = 67967, - [SMALL_STATE(1845)] = 67976, - [SMALL_STATE(1846)] = 67989, - [SMALL_STATE(1847)] = 68000, - [SMALL_STATE(1848)] = 68009, - [SMALL_STATE(1849)] = 68022, - [SMALL_STATE(1850)] = 68035, - [SMALL_STATE(1851)] = 68048, - [SMALL_STATE(1852)] = 68061, - [SMALL_STATE(1853)] = 68074, - [SMALL_STATE(1854)] = 68087, - [SMALL_STATE(1855)] = 68100, - [SMALL_STATE(1856)] = 68113, - [SMALL_STATE(1857)] = 68126, - [SMALL_STATE(1858)] = 68139, - [SMALL_STATE(1859)] = 68152, - [SMALL_STATE(1860)] = 68161, - [SMALL_STATE(1861)] = 68174, - [SMALL_STATE(1862)] = 68187, - [SMALL_STATE(1863)] = 68200, - [SMALL_STATE(1864)] = 68209, - [SMALL_STATE(1865)] = 68222, - [SMALL_STATE(1866)] = 68235, - [SMALL_STATE(1867)] = 68248, - [SMALL_STATE(1868)] = 68261, - [SMALL_STATE(1869)] = 68274, - [SMALL_STATE(1870)] = 68283, - [SMALL_STATE(1871)] = 68296, - [SMALL_STATE(1872)] = 68309, - [SMALL_STATE(1873)] = 68322, - [SMALL_STATE(1874)] = 68335, - [SMALL_STATE(1875)] = 68348, - [SMALL_STATE(1876)] = 68361, - [SMALL_STATE(1877)] = 68374, - [SMALL_STATE(1878)] = 68387, - [SMALL_STATE(1879)] = 68400, - [SMALL_STATE(1880)] = 68413, - [SMALL_STATE(1881)] = 68422, - [SMALL_STATE(1882)] = 68435, - [SMALL_STATE(1883)] = 68448, - [SMALL_STATE(1884)] = 68461, - [SMALL_STATE(1885)] = 68474, - [SMALL_STATE(1886)] = 68487, - [SMALL_STATE(1887)] = 68498, - [SMALL_STATE(1888)] = 68511, - [SMALL_STATE(1889)] = 68524, - [SMALL_STATE(1890)] = 68537, - [SMALL_STATE(1891)] = 68550, - [SMALL_STATE(1892)] = 68563, - [SMALL_STATE(1893)] = 68576, - [SMALL_STATE(1894)] = 68589, - [SMALL_STATE(1895)] = 68602, - [SMALL_STATE(1896)] = 68615, - [SMALL_STATE(1897)] = 68628, - [SMALL_STATE(1898)] = 68641, - [SMALL_STATE(1899)] = 68654, - [SMALL_STATE(1900)] = 68667, - [SMALL_STATE(1901)] = 68680, - [SMALL_STATE(1902)] = 68693, - [SMALL_STATE(1903)] = 68706, - [SMALL_STATE(1904)] = 68719, - [SMALL_STATE(1905)] = 68732, - [SMALL_STATE(1906)] = 68745, - [SMALL_STATE(1907)] = 68758, - [SMALL_STATE(1908)] = 68771, - [SMALL_STATE(1909)] = 68779, - [SMALL_STATE(1910)] = 68787, - [SMALL_STATE(1911)] = 68797, - [SMALL_STATE(1912)] = 68807, - [SMALL_STATE(1913)] = 68817, - [SMALL_STATE(1914)] = 68827, - [SMALL_STATE(1915)] = 68835, - [SMALL_STATE(1916)] = 68843, - [SMALL_STATE(1917)] = 68853, - [SMALL_STATE(1918)] = 68861, - [SMALL_STATE(1919)] = 68871, - [SMALL_STATE(1920)] = 68879, - [SMALL_STATE(1921)] = 68889, - [SMALL_STATE(1922)] = 68899, - [SMALL_STATE(1923)] = 68909, - [SMALL_STATE(1924)] = 68919, - [SMALL_STATE(1925)] = 68929, - [SMALL_STATE(1926)] = 68939, - [SMALL_STATE(1927)] = 68949, - [SMALL_STATE(1928)] = 68959, - [SMALL_STATE(1929)] = 68969, - [SMALL_STATE(1930)] = 68979, - [SMALL_STATE(1931)] = 68989, - [SMALL_STATE(1932)] = 68999, - [SMALL_STATE(1933)] = 69009, - [SMALL_STATE(1934)] = 69019, - [SMALL_STATE(1935)] = 69029, - [SMALL_STATE(1936)] = 69039, - [SMALL_STATE(1937)] = 69049, - [SMALL_STATE(1938)] = 69057, - [SMALL_STATE(1939)] = 69067, - [SMALL_STATE(1940)] = 69077, - [SMALL_STATE(1941)] = 69087, - [SMALL_STATE(1942)] = 69097, - [SMALL_STATE(1943)] = 69107, - [SMALL_STATE(1944)] = 69117, - [SMALL_STATE(1945)] = 69127, - [SMALL_STATE(1946)] = 69137, - [SMALL_STATE(1947)] = 69145, - [SMALL_STATE(1948)] = 69155, - [SMALL_STATE(1949)] = 69165, - [SMALL_STATE(1950)] = 69175, - [SMALL_STATE(1951)] = 69185, - [SMALL_STATE(1952)] = 69195, - [SMALL_STATE(1953)] = 69205, - [SMALL_STATE(1954)] = 69215, - [SMALL_STATE(1955)] = 69223, - [SMALL_STATE(1956)] = 69231, - [SMALL_STATE(1957)] = 69239, - [SMALL_STATE(1958)] = 69249, - [SMALL_STATE(1959)] = 69259, - [SMALL_STATE(1960)] = 69267, - [SMALL_STATE(1961)] = 69275, - [SMALL_STATE(1962)] = 69285, - [SMALL_STATE(1963)] = 69293, - [SMALL_STATE(1964)] = 69303, - [SMALL_STATE(1965)] = 69313, - [SMALL_STATE(1966)] = 69323, - [SMALL_STATE(1967)] = 69333, - [SMALL_STATE(1968)] = 69343, - [SMALL_STATE(1969)] = 69353, - [SMALL_STATE(1970)] = 69363, - [SMALL_STATE(1971)] = 69373, - [SMALL_STATE(1972)] = 69383, - [SMALL_STATE(1973)] = 69391, - [SMALL_STATE(1974)] = 69401, - [SMALL_STATE(1975)] = 69409, - [SMALL_STATE(1976)] = 69419, - [SMALL_STATE(1977)] = 69429, - [SMALL_STATE(1978)] = 69439, - [SMALL_STATE(1979)] = 69449, - [SMALL_STATE(1980)] = 69459, - [SMALL_STATE(1981)] = 69469, - [SMALL_STATE(1982)] = 69479, - [SMALL_STATE(1983)] = 69489, - [SMALL_STATE(1984)] = 69499, - [SMALL_STATE(1985)] = 69509, - [SMALL_STATE(1986)] = 69519, - [SMALL_STATE(1987)] = 69529, - [SMALL_STATE(1988)] = 69539, - [SMALL_STATE(1989)] = 69547, - [SMALL_STATE(1990)] = 69557, - [SMALL_STATE(1991)] = 69567, - [SMALL_STATE(1992)] = 69577, - [SMALL_STATE(1993)] = 69587, - [SMALL_STATE(1994)] = 69597, - [SMALL_STATE(1995)] = 69607, - [SMALL_STATE(1996)] = 69617, - [SMALL_STATE(1997)] = 69625, - [SMALL_STATE(1998)] = 69635, - [SMALL_STATE(1999)] = 69645, - [SMALL_STATE(2000)] = 69655, - [SMALL_STATE(2001)] = 69665, - [SMALL_STATE(2002)] = 69675, - [SMALL_STATE(2003)] = 69685, - [SMALL_STATE(2004)] = 69695, - [SMALL_STATE(2005)] = 69705, - [SMALL_STATE(2006)] = 69715, - [SMALL_STATE(2007)] = 69725, - [SMALL_STATE(2008)] = 69735, - [SMALL_STATE(2009)] = 69745, - [SMALL_STATE(2010)] = 69752, - [SMALL_STATE(2011)] = 69759, - [SMALL_STATE(2012)] = 69766, - [SMALL_STATE(2013)] = 69773, - [SMALL_STATE(2014)] = 69780, - [SMALL_STATE(2015)] = 69787, - [SMALL_STATE(2016)] = 69794, - [SMALL_STATE(2017)] = 69801, - [SMALL_STATE(2018)] = 69808, - [SMALL_STATE(2019)] = 69815, - [SMALL_STATE(2020)] = 69822, - [SMALL_STATE(2021)] = 69829, - [SMALL_STATE(2022)] = 69836, - [SMALL_STATE(2023)] = 69843, - [SMALL_STATE(2024)] = 69850, - [SMALL_STATE(2025)] = 69857, - [SMALL_STATE(2026)] = 69864, - [SMALL_STATE(2027)] = 69871, - [SMALL_STATE(2028)] = 69878, - [SMALL_STATE(2029)] = 69885, - [SMALL_STATE(2030)] = 69892, - [SMALL_STATE(2031)] = 69899, - [SMALL_STATE(2032)] = 69906, - [SMALL_STATE(2033)] = 69913, - [SMALL_STATE(2034)] = 69920, - [SMALL_STATE(2035)] = 69927, - [SMALL_STATE(2036)] = 69934, - [SMALL_STATE(2037)] = 69941, - [SMALL_STATE(2038)] = 69948, - [SMALL_STATE(2039)] = 69955, - [SMALL_STATE(2040)] = 69962, - [SMALL_STATE(2041)] = 69969, - [SMALL_STATE(2042)] = 69976, - [SMALL_STATE(2043)] = 69983, - [SMALL_STATE(2044)] = 69990, - [SMALL_STATE(2045)] = 69997, - [SMALL_STATE(2046)] = 70004, - [SMALL_STATE(2047)] = 70011, - [SMALL_STATE(2048)] = 70018, - [SMALL_STATE(2049)] = 70025, - [SMALL_STATE(2050)] = 70032, - [SMALL_STATE(2051)] = 70039, - [SMALL_STATE(2052)] = 70046, - [SMALL_STATE(2053)] = 70053, - [SMALL_STATE(2054)] = 70060, - [SMALL_STATE(2055)] = 70067, - [SMALL_STATE(2056)] = 70074, - [SMALL_STATE(2057)] = 70081, - [SMALL_STATE(2058)] = 70088, - [SMALL_STATE(2059)] = 70095, - [SMALL_STATE(2060)] = 70102, - [SMALL_STATE(2061)] = 70109, - [SMALL_STATE(2062)] = 70116, - [SMALL_STATE(2063)] = 70123, - [SMALL_STATE(2064)] = 70130, - [SMALL_STATE(2065)] = 70137, - [SMALL_STATE(2066)] = 70144, - [SMALL_STATE(2067)] = 70151, - [SMALL_STATE(2068)] = 70158, - [SMALL_STATE(2069)] = 70165, - [SMALL_STATE(2070)] = 70172, - [SMALL_STATE(2071)] = 70179, - [SMALL_STATE(2072)] = 70186, - [SMALL_STATE(2073)] = 70193, - [SMALL_STATE(2074)] = 70200, - [SMALL_STATE(2075)] = 70207, - [SMALL_STATE(2076)] = 70214, - [SMALL_STATE(2077)] = 70221, - [SMALL_STATE(2078)] = 70228, - [SMALL_STATE(2079)] = 70235, - [SMALL_STATE(2080)] = 70242, - [SMALL_STATE(2081)] = 70249, - [SMALL_STATE(2082)] = 70256, - [SMALL_STATE(2083)] = 70263, - [SMALL_STATE(2084)] = 70270, - [SMALL_STATE(2085)] = 70277, - [SMALL_STATE(2086)] = 70284, - [SMALL_STATE(2087)] = 70291, - [SMALL_STATE(2088)] = 70298, - [SMALL_STATE(2089)] = 70305, - [SMALL_STATE(2090)] = 70312, - [SMALL_STATE(2091)] = 70319, - [SMALL_STATE(2092)] = 70326, - [SMALL_STATE(2093)] = 70333, - [SMALL_STATE(2094)] = 70340, - [SMALL_STATE(2095)] = 70347, - [SMALL_STATE(2096)] = 70354, - [SMALL_STATE(2097)] = 70361, - [SMALL_STATE(2098)] = 70368, - [SMALL_STATE(2099)] = 70375, - [SMALL_STATE(2100)] = 70382, - [SMALL_STATE(2101)] = 70389, - [SMALL_STATE(2102)] = 70396, - [SMALL_STATE(2103)] = 70403, - [SMALL_STATE(2104)] = 70410, - [SMALL_STATE(2105)] = 70417, - [SMALL_STATE(2106)] = 70424, - [SMALL_STATE(2107)] = 70431, - [SMALL_STATE(2108)] = 70438, - [SMALL_STATE(2109)] = 70445, - [SMALL_STATE(2110)] = 70452, - [SMALL_STATE(2111)] = 70459, - [SMALL_STATE(2112)] = 70466, - [SMALL_STATE(2113)] = 70473, - [SMALL_STATE(2114)] = 70480, - [SMALL_STATE(2115)] = 70487, - [SMALL_STATE(2116)] = 70494, - [SMALL_STATE(2117)] = 70501, - [SMALL_STATE(2118)] = 70508, - [SMALL_STATE(2119)] = 70515, - [SMALL_STATE(2120)] = 70522, - [SMALL_STATE(2121)] = 70529, - [SMALL_STATE(2122)] = 70536, - [SMALL_STATE(2123)] = 70543, - [SMALL_STATE(2124)] = 70550, - [SMALL_STATE(2125)] = 70557, - [SMALL_STATE(2126)] = 70564, - [SMALL_STATE(2127)] = 70571, - [SMALL_STATE(2128)] = 70578, - [SMALL_STATE(2129)] = 70585, - [SMALL_STATE(2130)] = 70592, - [SMALL_STATE(2131)] = 70599, - [SMALL_STATE(2132)] = 70606, - [SMALL_STATE(2133)] = 70613, - [SMALL_STATE(2134)] = 70620, - [SMALL_STATE(2135)] = 70627, - [SMALL_STATE(2136)] = 70634, - [SMALL_STATE(2137)] = 70641, - [SMALL_STATE(2138)] = 70648, - [SMALL_STATE(2139)] = 70655, - [SMALL_STATE(2140)] = 70662, - [SMALL_STATE(2141)] = 70669, - [SMALL_STATE(2142)] = 70676, - [SMALL_STATE(2143)] = 70683, - [SMALL_STATE(2144)] = 70690, - [SMALL_STATE(2145)] = 70697, - [SMALL_STATE(2146)] = 70704, - [SMALL_STATE(2147)] = 70711, - [SMALL_STATE(2148)] = 70718, - [SMALL_STATE(2149)] = 70725, - [SMALL_STATE(2150)] = 70732, - [SMALL_STATE(2151)] = 70739, - [SMALL_STATE(2152)] = 70746, - [SMALL_STATE(2153)] = 70753, - [SMALL_STATE(2154)] = 70760, - [SMALL_STATE(2155)] = 70767, - [SMALL_STATE(2156)] = 70774, - [SMALL_STATE(2157)] = 70781, - [SMALL_STATE(2158)] = 70788, - [SMALL_STATE(2159)] = 70795, - [SMALL_STATE(2160)] = 70802, - [SMALL_STATE(2161)] = 70809, - [SMALL_STATE(2162)] = 70816, - [SMALL_STATE(2163)] = 70823, - [SMALL_STATE(2164)] = 70830, - [SMALL_STATE(2165)] = 70837, - [SMALL_STATE(2166)] = 70844, - [SMALL_STATE(2167)] = 70851, - [SMALL_STATE(2168)] = 70858, - [SMALL_STATE(2169)] = 70865, - [SMALL_STATE(2170)] = 70872, - [SMALL_STATE(2171)] = 70879, - [SMALL_STATE(2172)] = 70886, - [SMALL_STATE(2173)] = 70893, - [SMALL_STATE(2174)] = 70900, - [SMALL_STATE(2175)] = 70907, - [SMALL_STATE(2176)] = 70914, - [SMALL_STATE(2177)] = 70921, - [SMALL_STATE(2178)] = 70928, - [SMALL_STATE(2179)] = 70935, - [SMALL_STATE(2180)] = 70942, - [SMALL_STATE(2181)] = 70949, - [SMALL_STATE(2182)] = 70956, - [SMALL_STATE(2183)] = 70963, - [SMALL_STATE(2184)] = 70970, - [SMALL_STATE(2185)] = 70977, - [SMALL_STATE(2186)] = 70984, - [SMALL_STATE(2187)] = 70991, - [SMALL_STATE(2188)] = 70998, - [SMALL_STATE(2189)] = 71005, - [SMALL_STATE(2190)] = 71012, - [SMALL_STATE(2191)] = 71019, - [SMALL_STATE(2192)] = 71026, - [SMALL_STATE(2193)] = 71033, - [SMALL_STATE(2194)] = 71040, - [SMALL_STATE(2195)] = 71047, - [SMALL_STATE(2196)] = 71054, - [SMALL_STATE(2197)] = 71061, - [SMALL_STATE(2198)] = 71068, - [SMALL_STATE(2199)] = 71075, - [SMALL_STATE(2200)] = 71082, - [SMALL_STATE(2201)] = 71089, - [SMALL_STATE(2202)] = 71096, - [SMALL_STATE(2203)] = 71103, - [SMALL_STATE(2204)] = 71110, - [SMALL_STATE(2205)] = 71117, - [SMALL_STATE(2206)] = 71124, - [SMALL_STATE(2207)] = 71131, - [SMALL_STATE(2208)] = 71138, - [SMALL_STATE(2209)] = 71145, - [SMALL_STATE(2210)] = 71152, - [SMALL_STATE(2211)] = 71159, - [SMALL_STATE(2212)] = 71166, - [SMALL_STATE(2213)] = 71173, - [SMALL_STATE(2214)] = 71180, - [SMALL_STATE(2215)] = 71187, - [SMALL_STATE(2216)] = 71194, - [SMALL_STATE(2217)] = 71201, - [SMALL_STATE(2218)] = 71208, - [SMALL_STATE(2219)] = 71215, - [SMALL_STATE(2220)] = 71222, - [SMALL_STATE(2221)] = 71229, - [SMALL_STATE(2222)] = 71236, - [SMALL_STATE(2223)] = 71243, - [SMALL_STATE(2224)] = 71250, - [SMALL_STATE(2225)] = 71257, - [SMALL_STATE(2226)] = 71264, - [SMALL_STATE(2227)] = 71271, - [SMALL_STATE(2228)] = 71278, - [SMALL_STATE(2229)] = 71285, - [SMALL_STATE(2230)] = 71292, - [SMALL_STATE(2231)] = 71299, - [SMALL_STATE(2232)] = 71306, - [SMALL_STATE(2233)] = 71313, - [SMALL_STATE(2234)] = 71320, - [SMALL_STATE(2235)] = 71327, - [SMALL_STATE(2236)] = 71334, - [SMALL_STATE(2237)] = 71341, - [SMALL_STATE(2238)] = 71348, - [SMALL_STATE(2239)] = 71355, - [SMALL_STATE(2240)] = 71362, - [SMALL_STATE(2241)] = 71369, - [SMALL_STATE(2242)] = 71376, - [SMALL_STATE(2243)] = 71383, - [SMALL_STATE(2244)] = 71390, - [SMALL_STATE(2245)] = 71397, - [SMALL_STATE(2246)] = 71404, - [SMALL_STATE(2247)] = 71411, - [SMALL_STATE(2248)] = 71418, - [SMALL_STATE(2249)] = 71425, - [SMALL_STATE(2250)] = 71432, - [SMALL_STATE(2251)] = 71439, - [SMALL_STATE(2252)] = 71446, - [SMALL_STATE(2253)] = 71453, - [SMALL_STATE(2254)] = 71460, - [SMALL_STATE(2255)] = 71467, - [SMALL_STATE(2256)] = 71474, - [SMALL_STATE(2257)] = 71481, - [SMALL_STATE(2258)] = 71488, - [SMALL_STATE(2259)] = 71495, - [SMALL_STATE(2260)] = 71502, - [SMALL_STATE(2261)] = 71509, - [SMALL_STATE(2262)] = 71516, - [SMALL_STATE(2263)] = 71523, - [SMALL_STATE(2264)] = 71530, - [SMALL_STATE(2265)] = 71537, - [SMALL_STATE(2266)] = 71544, - [SMALL_STATE(2267)] = 71551, - [SMALL_STATE(2268)] = 71558, - [SMALL_STATE(2269)] = 71565, - [SMALL_STATE(2270)] = 71572, - [SMALL_STATE(2271)] = 71579, - [SMALL_STATE(2272)] = 71586, - [SMALL_STATE(2273)] = 71593, - [SMALL_STATE(2274)] = 71600, - [SMALL_STATE(2275)] = 71607, - [SMALL_STATE(2276)] = 71614, - [SMALL_STATE(2277)] = 71621, - [SMALL_STATE(2278)] = 71628, - [SMALL_STATE(2279)] = 71635, - [SMALL_STATE(2280)] = 71642, - [SMALL_STATE(2281)] = 71649, - [SMALL_STATE(2282)] = 71656, - [SMALL_STATE(2283)] = 71663, - [SMALL_STATE(2284)] = 71670, - [SMALL_STATE(2285)] = 71677, - [SMALL_STATE(2286)] = 71684, - [SMALL_STATE(2287)] = 71691, - [SMALL_STATE(2288)] = 71698, - [SMALL_STATE(2289)] = 71705, - [SMALL_STATE(2290)] = 71712, - [SMALL_STATE(2291)] = 71719, - [SMALL_STATE(2292)] = 71726, - [SMALL_STATE(2293)] = 71733, - [SMALL_STATE(2294)] = 71740, - [SMALL_STATE(2295)] = 71747, - [SMALL_STATE(2296)] = 71754, - [SMALL_STATE(2297)] = 71761, - [SMALL_STATE(2298)] = 71768, - [SMALL_STATE(2299)] = 71775, + [SMALL_STATE(613)] = 0, + [SMALL_STATE(614)] = 115, + [SMALL_STATE(615)] = 230, + [SMALL_STATE(616)] = 342, + [SMALL_STATE(617)] = 452, + [SMALL_STATE(618)] = 561, + [SMALL_STATE(619)] = 670, + [SMALL_STATE(620)] = 779, + [SMALL_STATE(621)] = 888, + [SMALL_STATE(622)] = 997, + [SMALL_STATE(623)] = 1104, + [SMALL_STATE(624)] = 1213, + [SMALL_STATE(625)] = 1322, + [SMALL_STATE(626)] = 1431, + [SMALL_STATE(627)] = 1540, + [SMALL_STATE(628)] = 1647, + [SMALL_STATE(629)] = 1756, + [SMALL_STATE(630)] = 1863, + [SMALL_STATE(631)] = 1972, + [SMALL_STATE(632)] = 2081, + [SMALL_STATE(633)] = 2190, + [SMALL_STATE(634)] = 2299, + [SMALL_STATE(635)] = 2408, + [SMALL_STATE(636)] = 2517, + [SMALL_STATE(637)] = 2626, + [SMALL_STATE(638)] = 2735, + [SMALL_STATE(639)] = 2844, + [SMALL_STATE(640)] = 2953, + [SMALL_STATE(641)] = 3062, + [SMALL_STATE(642)] = 3171, + [SMALL_STATE(643)] = 3280, + [SMALL_STATE(644)] = 3389, + [SMALL_STATE(645)] = 3496, + [SMALL_STATE(646)] = 3605, + [SMALL_STATE(647)] = 3714, + [SMALL_STATE(648)] = 3823, + [SMALL_STATE(649)] = 3932, + [SMALL_STATE(650)] = 4041, + [SMALL_STATE(651)] = 4149, + [SMALL_STATE(652)] = 4253, + [SMALL_STATE(653)] = 4357, + [SMALL_STATE(654)] = 4461, + [SMALL_STATE(655)] = 4565, + [SMALL_STATE(656)] = 4671, + [SMALL_STATE(657)] = 4775, + [SMALL_STATE(658)] = 4879, + [SMALL_STATE(659)] = 4987, + [SMALL_STATE(660)] = 5091, + [SMALL_STATE(661)] = 5199, + [SMALL_STATE(662)] = 5305, + [SMALL_STATE(663)] = 5409, + [SMALL_STATE(664)] = 5513, + [SMALL_STATE(665)] = 5617, + [SMALL_STATE(666)] = 5725, + [SMALL_STATE(667)] = 5831, + [SMALL_STATE(668)] = 5939, + [SMALL_STATE(669)] = 6047, + [SMALL_STATE(670)] = 6150, + [SMALL_STATE(671)] = 6253, + [SMALL_STATE(672)] = 6356, + [SMALL_STATE(673)] = 6459, + [SMALL_STATE(674)] = 6562, + [SMALL_STATE(675)] = 6663, + [SMALL_STATE(676)] = 6766, + [SMALL_STATE(677)] = 6869, + [SMALL_STATE(678)] = 6972, + [SMALL_STATE(679)] = 7073, + [SMALL_STATE(680)] = 7176, + [SMALL_STATE(681)] = 7279, + [SMALL_STATE(682)] = 7380, + [SMALL_STATE(683)] = 7483, + [SMALL_STATE(684)] = 7584, + [SMALL_STATE(685)] = 7687, + [SMALL_STATE(686)] = 7790, + [SMALL_STATE(687)] = 7893, + [SMALL_STATE(688)] = 7994, + [SMALL_STATE(689)] = 8097, + [SMALL_STATE(690)] = 8200, + [SMALL_STATE(691)] = 8301, + [SMALL_STATE(692)] = 8404, + [SMALL_STATE(693)] = 8505, + [SMALL_STATE(694)] = 8608, + [SMALL_STATE(695)] = 8711, + [SMALL_STATE(696)] = 8814, + [SMALL_STATE(697)] = 8917, + [SMALL_STATE(698)] = 9020, + [SMALL_STATE(699)] = 9123, + [SMALL_STATE(700)] = 9226, + [SMALL_STATE(701)] = 9327, + [SMALL_STATE(702)] = 9430, + [SMALL_STATE(703)] = 9531, + [SMALL_STATE(704)] = 9632, + [SMALL_STATE(705)] = 9733, + [SMALL_STATE(706)] = 9834, + [SMALL_STATE(707)] = 9935, + [SMALL_STATE(708)] = 10036, + [SMALL_STATE(709)] = 10137, + [SMALL_STATE(710)] = 10240, + [SMALL_STATE(711)] = 10341, + [SMALL_STATE(712)] = 10444, + [SMALL_STATE(713)] = 10545, + [SMALL_STATE(714)] = 10646, + [SMALL_STATE(715)] = 10747, + [SMALL_STATE(716)] = 10850, + [SMALL_STATE(717)] = 10951, + [SMALL_STATE(718)] = 11052, + [SMALL_STATE(719)] = 11155, + [SMALL_STATE(720)] = 11258, + [SMALL_STATE(721)] = 11361, + [SMALL_STATE(722)] = 11464, + [SMALL_STATE(723)] = 11567, + [SMALL_STATE(724)] = 11670, + [SMALL_STATE(725)] = 11771, + [SMALL_STATE(726)] = 11874, + [SMALL_STATE(727)] = 11977, + [SMALL_STATE(728)] = 12080, + [SMALL_STATE(729)] = 12183, + [SMALL_STATE(730)] = 12284, + [SMALL_STATE(731)] = 12387, + [SMALL_STATE(732)] = 12490, + [SMALL_STATE(733)] = 12593, + [SMALL_STATE(734)] = 12696, + [SMALL_STATE(735)] = 12799, + [SMALL_STATE(736)] = 12902, + [SMALL_STATE(737)] = 13005, + [SMALL_STATE(738)] = 13108, + [SMALL_STATE(739)] = 13211, + [SMALL_STATE(740)] = 13314, + [SMALL_STATE(741)] = 13417, + [SMALL_STATE(742)] = 13520, + [SMALL_STATE(743)] = 13623, + [SMALL_STATE(744)] = 13726, + [SMALL_STATE(745)] = 13829, + [SMALL_STATE(746)] = 13932, + [SMALL_STATE(747)] = 14035, + [SMALL_STATE(748)] = 14138, + [SMALL_STATE(749)] = 14241, + [SMALL_STATE(750)] = 14344, + [SMALL_STATE(751)] = 14447, + [SMALL_STATE(752)] = 14550, + [SMALL_STATE(753)] = 14653, + [SMALL_STATE(754)] = 14756, + [SMALL_STATE(755)] = 14857, + [SMALL_STATE(756)] = 14960, + [SMALL_STATE(757)] = 15061, + [SMALL_STATE(758)] = 15162, + [SMALL_STATE(759)] = 15263, + [SMALL_STATE(760)] = 15366, + [SMALL_STATE(761)] = 15467, + [SMALL_STATE(762)] = 15570, + [SMALL_STATE(763)] = 15671, + [SMALL_STATE(764)] = 15774, + [SMALL_STATE(765)] = 15875, + [SMALL_STATE(766)] = 15976, + [SMALL_STATE(767)] = 16079, + [SMALL_STATE(768)] = 16180, + [SMALL_STATE(769)] = 16281, + [SMALL_STATE(770)] = 16382, + [SMALL_STATE(771)] = 16483, + [SMALL_STATE(772)] = 16584, + [SMALL_STATE(773)] = 16685, + [SMALL_STATE(774)] = 16786, + [SMALL_STATE(775)] = 16889, + [SMALL_STATE(776)] = 16992, + [SMALL_STATE(777)] = 17093, + [SMALL_STATE(778)] = 17194, + [SMALL_STATE(779)] = 17295, + [SMALL_STATE(780)] = 17396, + [SMALL_STATE(781)] = 17497, + [SMALL_STATE(782)] = 17598, + [SMALL_STATE(783)] = 17701, + [SMALL_STATE(784)] = 17802, + [SMALL_STATE(785)] = 17903, + [SMALL_STATE(786)] = 18004, + [SMALL_STATE(787)] = 18107, + [SMALL_STATE(788)] = 18210, + [SMALL_STATE(789)] = 18313, + [SMALL_STATE(790)] = 18416, + [SMALL_STATE(791)] = 18519, + [SMALL_STATE(792)] = 18622, + [SMALL_STATE(793)] = 18725, + [SMALL_STATE(794)] = 18826, + [SMALL_STATE(795)] = 18929, + [SMALL_STATE(796)] = 19030, + [SMALL_STATE(797)] = 19131, + [SMALL_STATE(798)] = 19232, + [SMALL_STATE(799)] = 19333, + [SMALL_STATE(800)] = 19434, + [SMALL_STATE(801)] = 19535, + [SMALL_STATE(802)] = 19636, + [SMALL_STATE(803)] = 19737, + [SMALL_STATE(804)] = 19840, + [SMALL_STATE(805)] = 19941, + [SMALL_STATE(806)] = 20044, + [SMALL_STATE(807)] = 20145, + [SMALL_STATE(808)] = 20248, + [SMALL_STATE(809)] = 20349, + [SMALL_STATE(810)] = 20452, + [SMALL_STATE(811)] = 20553, + [SMALL_STATE(812)] = 20656, + [SMALL_STATE(813)] = 20757, + [SMALL_STATE(814)] = 20860, + [SMALL_STATE(815)] = 20963, + [SMALL_STATE(816)] = 21064, + [SMALL_STATE(817)] = 21167, + [SMALL_STATE(818)] = 21270, + [SMALL_STATE(819)] = 21371, + [SMALL_STATE(820)] = 21474, + [SMALL_STATE(821)] = 21575, + [SMALL_STATE(822)] = 21663, + [SMALL_STATE(823)] = 21764, + [SMALL_STATE(824)] = 21865, + [SMALL_STATE(825)] = 21936, + [SMALL_STATE(826)] = 22007, + [SMALL_STATE(827)] = 22108, + [SMALL_STATE(828)] = 22179, + [SMALL_STATE(829)] = 22280, + [SMALL_STATE(830)] = 22381, + [SMALL_STATE(831)] = 22449, + [SMALL_STATE(832)] = 22512, + [SMALL_STATE(833)] = 22575, + [SMALL_STATE(834)] = 22637, + [SMALL_STATE(835)] = 22699, + [SMALL_STATE(836)] = 22761, + [SMALL_STATE(837)] = 22823, + [SMALL_STATE(838)] = 22885, + [SMALL_STATE(839)] = 22947, + [SMALL_STATE(840)] = 23009, + [SMALL_STATE(841)] = 23071, + [SMALL_STATE(842)] = 23133, + [SMALL_STATE(843)] = 23195, + [SMALL_STATE(844)] = 23254, + [SMALL_STATE(845)] = 23325, + [SMALL_STATE(846)] = 23390, + [SMALL_STATE(847)] = 23449, + [SMALL_STATE(848)] = 23508, + [SMALL_STATE(849)] = 23567, + [SMALL_STATE(850)] = 23659, + [SMALL_STATE(851)] = 23717, + [SMALL_STATE(852)] = 23809, + [SMALL_STATE(853)] = 23901, + [SMALL_STATE(854)] = 23993, + [SMALL_STATE(855)] = 24085, + [SMALL_STATE(856)] = 24177, + [SMALL_STATE(857)] = 24235, + [SMALL_STATE(858)] = 24293, + [SMALL_STATE(859)] = 24351, + [SMALL_STATE(860)] = 24409, + [SMALL_STATE(861)] = 24501, + [SMALL_STATE(862)] = 24559, + [SMALL_STATE(863)] = 24653, + [SMALL_STATE(864)] = 24745, + [SMALL_STATE(865)] = 24803, + [SMALL_STATE(866)] = 24861, + [SMALL_STATE(867)] = 24919, + [SMALL_STATE(868)] = 25011, + [SMALL_STATE(869)] = 25103, + [SMALL_STATE(870)] = 25161, + [SMALL_STATE(871)] = 25219, + [SMALL_STATE(872)] = 25311, + [SMALL_STATE(873)] = 25369, + [SMALL_STATE(874)] = 25461, + [SMALL_STATE(875)] = 25553, + [SMALL_STATE(876)] = 25645, + [SMALL_STATE(877)] = 25737, + [SMALL_STATE(878)] = 25829, + [SMALL_STATE(879)] = 25921, + [SMALL_STATE(880)] = 26013, + [SMALL_STATE(881)] = 26105, + [SMALL_STATE(882)] = 26197, + [SMALL_STATE(883)] = 26255, + [SMALL_STATE(884)] = 26313, + [SMALL_STATE(885)] = 26371, + [SMALL_STATE(886)] = 26463, + [SMALL_STATE(887)] = 26521, + [SMALL_STATE(888)] = 26588, + [SMALL_STATE(889)] = 26677, + [SMALL_STATE(890)] = 26744, + [SMALL_STATE(891)] = 26805, + [SMALL_STATE(892)] = 26872, + [SMALL_STATE(893)] = 26929, + [SMALL_STATE(894)] = 26986, + [SMALL_STATE(895)] = 27077, + [SMALL_STATE(896)] = 27134, + [SMALL_STATE(897)] = 27199, + [SMALL_STATE(898)] = 27256, + [SMALL_STATE(899)] = 27345, + [SMALL_STATE(900)] = 27412, + [SMALL_STATE(901)] = 27477, + [SMALL_STATE(902)] = 27534, + [SMALL_STATE(903)] = 27601, + [SMALL_STATE(904)] = 27663, + [SMALL_STATE(905)] = 27725, + [SMALL_STATE(906)] = 27787, + [SMALL_STATE(907)] = 27851, + [SMALL_STATE(908)] = 27914, + [SMALL_STATE(909)] = 27973, + [SMALL_STATE(910)] = 28032, + [SMALL_STATE(911)] = 28091, + [SMALL_STATE(912)] = 28173, + [SMALL_STATE(913)] = 28255, + [SMALL_STATE(914)] = 28337, + [SMALL_STATE(915)] = 28419, + [SMALL_STATE(916)] = 28501, + [SMALL_STATE(917)] = 28555, + [SMALL_STATE(918)] = 28637, + [SMALL_STATE(919)] = 28691, + [SMALL_STATE(920)] = 28773, + [SMALL_STATE(921)] = 28855, + [SMALL_STATE(922)] = 28937, + [SMALL_STATE(923)] = 29019, + [SMALL_STATE(924)] = 29082, + [SMALL_STATE(925)] = 29143, + [SMALL_STATE(926)] = 29206, + [SMALL_STATE(927)] = 29259, + [SMALL_STATE(928)] = 29322, + [SMALL_STATE(929)] = 29385, + [SMALL_STATE(930)] = 29446, + [SMALL_STATE(931)] = 29507, + [SMALL_STATE(932)] = 29568, + [SMALL_STATE(933)] = 29647, + [SMALL_STATE(934)] = 29708, + [SMALL_STATE(935)] = 29771, + [SMALL_STATE(936)] = 29834, + [SMALL_STATE(937)] = 29887, + [SMALL_STATE(938)] = 29940, + [SMALL_STATE(939)] = 30003, + [SMALL_STATE(940)] = 30055, + [SMALL_STATE(941)] = 30141, + [SMALL_STATE(942)] = 30193, + [SMALL_STATE(943)] = 30279, + [SMALL_STATE(944)] = 30365, + [SMALL_STATE(945)] = 30429, + [SMALL_STATE(946)] = 30511, + [SMALL_STATE(947)] = 30591, + [SMALL_STATE(948)] = 30669, + [SMALL_STATE(949)] = 30745, + [SMALL_STATE(950)] = 30805, + [SMALL_STATE(951)] = 30857, + [SMALL_STATE(952)] = 30931, + [SMALL_STATE(953)] = 31003, + [SMALL_STATE(954)] = 31071, + [SMALL_STATE(955)] = 31137, + [SMALL_STATE(956)] = 31200, + [SMALL_STATE(957)] = 31255, + [SMALL_STATE(958)] = 31340, + [SMALL_STATE(959)] = 31391, + [SMALL_STATE(960)] = 31446, + [SMALL_STATE(961)] = 31509, + [SMALL_STATE(962)] = 31572, + [SMALL_STATE(963)] = 31627, + [SMALL_STATE(964)] = 31712, + [SMALL_STATE(965)] = 31763, + [SMALL_STATE(966)] = 31818, + [SMALL_STATE(967)] = 31873, + [SMALL_STATE(968)] = 31928, + [SMALL_STATE(969)] = 31983, + [SMALL_STATE(970)] = 32038, + [SMALL_STATE(971)] = 32089, + [SMALL_STATE(972)] = 32154, + [SMALL_STATE(973)] = 32221, + [SMALL_STATE(974)] = 32292, + [SMALL_STATE(975)] = 32347, + [SMALL_STATE(976)] = 32420, + [SMALL_STATE(977)] = 32495, + [SMALL_STATE(978)] = 32572, + [SMALL_STATE(979)] = 32651, + [SMALL_STATE(980)] = 32732, + [SMALL_STATE(981)] = 32795, + [SMALL_STATE(982)] = 32846, + [SMALL_STATE(983)] = 32931, + [SMALL_STATE(984)] = 32986, + [SMALL_STATE(985)] = 33041, + [SMALL_STATE(986)] = 33096, + [SMALL_STATE(987)] = 33159, + [SMALL_STATE(988)] = 33243, + [SMALL_STATE(989)] = 33305, + [SMALL_STATE(990)] = 33361, + [SMALL_STATE(991)] = 33439, + [SMALL_STATE(992)] = 33489, + [SMALL_STATE(993)] = 33539, + [SMALL_STATE(994)] = 33611, + [SMALL_STATE(995)] = 33681, + [SMALL_STATE(996)] = 33747, + [SMALL_STATE(997)] = 33807, + [SMALL_STATE(998)] = 33871, + [SMALL_STATE(999)] = 33921, + [SMALL_STATE(1000)] = 34001, + [SMALL_STATE(1001)] = 34055, + [SMALL_STATE(1002)] = 34115, + [SMALL_STATE(1003)] = 34175, + [SMALL_STATE(1004)] = 34229, + [SMALL_STATE(1005)] = 34313, + [SMALL_STATE(1006)] = 34389, + [SMALL_STATE(1007)] = 34447, + [SMALL_STATE(1008)] = 34497, + [SMALL_STATE(1009)] = 34547, + [SMALL_STATE(1010)] = 34597, + [SMALL_STATE(1011)] = 34647, + [SMALL_STATE(1012)] = 34697, + [SMALL_STATE(1013)] = 34747, + [SMALL_STATE(1014)] = 34797, + [SMALL_STATE(1015)] = 34851, + [SMALL_STATE(1016)] = 34901, + [SMALL_STATE(1017)] = 34951, + [SMALL_STATE(1018)] = 35005, + [SMALL_STATE(1019)] = 35065, + [SMALL_STATE(1020)] = 35115, + [SMALL_STATE(1021)] = 35165, + [SMALL_STATE(1022)] = 35225, + [SMALL_STATE(1023)] = 35279, + [SMALL_STATE(1024)] = 35329, + [SMALL_STATE(1025)] = 35379, + [SMALL_STATE(1026)] = 35433, + [SMALL_STATE(1027)] = 35483, + [SMALL_STATE(1028)] = 35537, + [SMALL_STATE(1029)] = 35587, + [SMALL_STATE(1030)] = 35637, + [SMALL_STATE(1031)] = 35687, + [SMALL_STATE(1032)] = 35737, + [SMALL_STATE(1033)] = 35821, + [SMALL_STATE(1034)] = 35895, + [SMALL_STATE(1035)] = 35945, + [SMALL_STATE(1036)] = 35995, + [SMALL_STATE(1037)] = 36051, + [SMALL_STATE(1038)] = 36101, + [SMALL_STATE(1039)] = 36155, + [SMALL_STATE(1040)] = 36213, + [SMALL_STATE(1041)] = 36263, + [SMALL_STATE(1042)] = 36313, + [SMALL_STATE(1043)] = 36363, + [SMALL_STATE(1044)] = 36412, + [SMALL_STATE(1045)] = 36461, + [SMALL_STATE(1046)] = 36510, + [SMALL_STATE(1047)] = 36559, + [SMALL_STATE(1048)] = 36608, + [SMALL_STATE(1049)] = 36657, + [SMALL_STATE(1050)] = 36706, + [SMALL_STATE(1051)] = 36755, + [SMALL_STATE(1052)] = 36804, + [SMALL_STATE(1053)] = 36853, + [SMALL_STATE(1054)] = 36902, + [SMALL_STATE(1055)] = 36951, + [SMALL_STATE(1056)] = 37000, + [SMALL_STATE(1057)] = 37049, + [SMALL_STATE(1058)] = 37098, + [SMALL_STATE(1059)] = 37147, + [SMALL_STATE(1060)] = 37196, + [SMALL_STATE(1061)] = 37245, + [SMALL_STATE(1062)] = 37294, + [SMALL_STATE(1063)] = 37343, + [SMALL_STATE(1064)] = 37392, + [SMALL_STATE(1065)] = 37441, + [SMALL_STATE(1066)] = 37490, + [SMALL_STATE(1067)] = 37539, + [SMALL_STATE(1068)] = 37588, + [SMALL_STATE(1069)] = 37637, + [SMALL_STATE(1070)] = 37686, + [SMALL_STATE(1071)] = 37735, + [SMALL_STATE(1072)] = 37784, + [SMALL_STATE(1073)] = 37833, + [SMALL_STATE(1074)] = 37882, + [SMALL_STATE(1075)] = 37931, + [SMALL_STATE(1076)] = 37980, + [SMALL_STATE(1077)] = 38029, + [SMALL_STATE(1078)] = 38078, + [SMALL_STATE(1079)] = 38127, + [SMALL_STATE(1080)] = 38176, + [SMALL_STATE(1081)] = 38225, + [SMALL_STATE(1082)] = 38274, + [SMALL_STATE(1083)] = 38323, + [SMALL_STATE(1084)] = 38372, + [SMALL_STATE(1085)] = 38421, + [SMALL_STATE(1086)] = 38470, + [SMALL_STATE(1087)] = 38519, + [SMALL_STATE(1088)] = 38568, + [SMALL_STATE(1089)] = 38621, + [SMALL_STATE(1090)] = 38683, + [SMALL_STATE(1091)] = 38741, + [SMALL_STATE(1092)] = 38803, + [SMALL_STATE(1093)] = 38865, + [SMALL_STATE(1094)] = 38927, + [SMALL_STATE(1095)] = 38989, + [SMALL_STATE(1096)] = 39036, + [SMALL_STATE(1097)] = 39095, + [SMALL_STATE(1098)] = 39142, + [SMALL_STATE(1099)] = 39207, + [SMALL_STATE(1100)] = 39270, + [SMALL_STATE(1101)] = 39329, + [SMALL_STATE(1102)] = 39412, + [SMALL_STATE(1103)] = 39495, + [SMALL_STATE(1104)] = 39542, + [SMALL_STATE(1105)] = 39595, + [SMALL_STATE(1106)] = 39642, + [SMALL_STATE(1107)] = 39689, + [SMALL_STATE(1108)] = 39736, + [SMALL_STATE(1109)] = 39783, + [SMALL_STATE(1110)] = 39830, + [SMALL_STATE(1111)] = 39877, + [SMALL_STATE(1112)] = 39924, + [SMALL_STATE(1113)] = 39977, + [SMALL_STATE(1114)] = 40032, + [SMALL_STATE(1115)] = 40079, + [SMALL_STATE(1116)] = 40126, + [SMALL_STATE(1117)] = 40173, + [SMALL_STATE(1118)] = 40242, + [SMALL_STATE(1119)] = 40289, + [SMALL_STATE(1120)] = 40368, + [SMALL_STATE(1121)] = 40439, + [SMALL_STATE(1122)] = 40518, + [SMALL_STATE(1123)] = 40597, + [SMALL_STATE(1124)] = 40644, + [SMALL_STATE(1125)] = 40691, + [SMALL_STATE(1126)] = 40738, + [SMALL_STATE(1127)] = 40785, + [SMALL_STATE(1128)] = 40844, + [SMALL_STATE(1129)] = 40927, + [SMALL_STATE(1130)] = 40986, + [SMALL_STATE(1131)] = 41045, + [SMALL_STATE(1132)] = 41106, + [SMALL_STATE(1133)] = 41163, + [SMALL_STATE(1134)] = 41236, + [SMALL_STATE(1135)] = 41311, + [SMALL_STATE(1136)] = 41388, + [SMALL_STATE(1137)] = 41434, + [SMALL_STATE(1138)] = 41480, + [SMALL_STATE(1139)] = 41530, + [SMALL_STATE(1140)] = 41575, + [SMALL_STATE(1141)] = 41620, + [SMALL_STATE(1142)] = 41665, + [SMALL_STATE(1143)] = 41710, + [SMALL_STATE(1144)] = 41755, + [SMALL_STATE(1145)] = 41800, + [SMALL_STATE(1146)] = 41845, + [SMALL_STATE(1147)] = 41890, + [SMALL_STATE(1148)] = 41935, + [SMALL_STATE(1149)] = 41980, + [SMALL_STATE(1150)] = 42025, + [SMALL_STATE(1151)] = 42070, + [SMALL_STATE(1152)] = 42115, + [SMALL_STATE(1153)] = 42164, + [SMALL_STATE(1154)] = 42213, + [SMALL_STATE(1155)] = 42258, + [SMALL_STATE(1156)] = 42303, + [SMALL_STATE(1157)] = 42348, + [SMALL_STATE(1158)] = 42397, + [SMALL_STATE(1159)] = 42442, + [SMALL_STATE(1160)] = 42487, + [SMALL_STATE(1161)] = 42532, + [SMALL_STATE(1162)] = 42577, + [SMALL_STATE(1163)] = 42622, + [SMALL_STATE(1164)] = 42671, + [SMALL_STATE(1165)] = 42716, + [SMALL_STATE(1166)] = 42765, + [SMALL_STATE(1167)] = 42814, + [SMALL_STATE(1168)] = 42859, + [SMALL_STATE(1169)] = 42904, + [SMALL_STATE(1170)] = 42953, + [SMALL_STATE(1171)] = 42998, + [SMALL_STATE(1172)] = 43047, + [SMALL_STATE(1173)] = 43092, + [SMALL_STATE(1174)] = 43137, + [SMALL_STATE(1175)] = 43182, + [SMALL_STATE(1176)] = 43227, + [SMALL_STATE(1177)] = 43272, + [SMALL_STATE(1178)] = 43317, + [SMALL_STATE(1179)] = 43362, + [SMALL_STATE(1180)] = 43407, + [SMALL_STATE(1181)] = 43452, + [SMALL_STATE(1182)] = 43497, + [SMALL_STATE(1183)] = 43542, + [SMALL_STATE(1184)] = 43586, + [SMALL_STATE(1185)] = 43630, + [SMALL_STATE(1186)] = 43674, + [SMALL_STATE(1187)] = 43718, + [SMALL_STATE(1188)] = 43762, + [SMALL_STATE(1189)] = 43806, + [SMALL_STATE(1190)] = 43850, + [SMALL_STATE(1191)] = 43894, + [SMALL_STATE(1192)] = 43938, + [SMALL_STATE(1193)] = 43982, + [SMALL_STATE(1194)] = 44051, + [SMALL_STATE(1195)] = 44120, + [SMALL_STATE(1196)] = 44189, + [SMALL_STATE(1197)] = 44258, + [SMALL_STATE(1198)] = 44313, + [SMALL_STATE(1199)] = 44356, + [SMALL_STATE(1200)] = 44406, + [SMALL_STATE(1201)] = 44458, + [SMALL_STATE(1202)] = 44535, + [SMALL_STATE(1203)] = 44590, + [SMALL_STATE(1204)] = 44663, + [SMALL_STATE(1205)] = 44734, + [SMALL_STATE(1206)] = 44803, + [SMALL_STATE(1207)] = 44870, + [SMALL_STATE(1208)] = 44929, + [SMALL_STATE(1209)] = 45006, + [SMALL_STATE(1210)] = 45083, + [SMALL_STATE(1211)] = 45160, + [SMALL_STATE(1212)] = 45223, + [SMALL_STATE(1213)] = 45288, + [SMALL_STATE(1214)] = 45345, + [SMALL_STATE(1215)] = 45409, + [SMALL_STATE(1216)] = 45463, + [SMALL_STATE(1217)] = 45503, + [SMALL_STATE(1218)] = 45559, + [SMALL_STATE(1219)] = 45627, + [SMALL_STATE(1220)] = 45667, + [SMALL_STATE(1221)] = 45725, + [SMALL_STATE(1222)] = 45767, + [SMALL_STATE(1223)] = 45841, + [SMALL_STATE(1224)] = 45911, + [SMALL_STATE(1225)] = 45985, + [SMALL_STATE(1226)] = 46047, + [SMALL_STATE(1227)] = 46087, + [SMALL_STATE(1228)] = 46127, + [SMALL_STATE(1229)] = 46167, + [SMALL_STATE(1230)] = 46235, + [SMALL_STATE(1231)] = 46277, + [SMALL_STATE(1232)] = 46317, + [SMALL_STATE(1233)] = 46357, + [SMALL_STATE(1234)] = 46397, + [SMALL_STATE(1235)] = 46439, + [SMALL_STATE(1236)] = 46479, + [SMALL_STATE(1237)] = 46519, + [SMALL_STATE(1238)] = 46559, + [SMALL_STATE(1239)] = 46625, + [SMALL_STATE(1240)] = 46665, + [SMALL_STATE(1241)] = 46707, + [SMALL_STATE(1242)] = 46749, + [SMALL_STATE(1243)] = 46823, + [SMALL_STATE(1244)] = 46863, + [SMALL_STATE(1245)] = 46930, + [SMALL_STATE(1246)] = 46993, + [SMALL_STATE(1247)] = 47058, + [SMALL_STATE(1248)] = 47131, + [SMALL_STATE(1249)] = 47196, + [SMALL_STATE(1250)] = 47269, + [SMALL_STATE(1251)] = 47332, + [SMALL_STATE(1252)] = 47393, + [SMALL_STATE(1253)] = 47448, + [SMALL_STATE(1254)] = 47505, + [SMALL_STATE(1255)] = 47570, + [SMALL_STATE(1256)] = 47633, + [SMALL_STATE(1257)] = 47700, + [SMALL_STATE(1258)] = 47773, + [SMALL_STATE(1259)] = 47846, + [SMALL_STATE(1260)] = 47899, + [SMALL_STATE(1261)] = 47968, + [SMALL_STATE(1262)] = 48028, + [SMALL_STATE(1263)] = 48088, + [SMALL_STATE(1264)] = 48134, + [SMALL_STATE(1265)] = 48172, + [SMALL_STATE(1266)] = 48232, + [SMALL_STATE(1267)] = 48292, + [SMALL_STATE(1268)] = 48330, + [SMALL_STATE(1269)] = 48390, + [SMALL_STATE(1270)] = 48450, + [SMALL_STATE(1271)] = 48510, + [SMALL_STATE(1272)] = 48548, + [SMALL_STATE(1273)] = 48608, + [SMALL_STATE(1274)] = 48646, + [SMALL_STATE(1275)] = 48720, + [SMALL_STATE(1276)] = 48795, + [SMALL_STATE(1277)] = 48870, + [SMALL_STATE(1278)] = 48945, + [SMALL_STATE(1279)] = 49020, + [SMALL_STATE(1280)] = 49095, + [SMALL_STATE(1281)] = 49170, + [SMALL_STATE(1282)] = 49241, + [SMALL_STATE(1283)] = 49316, + [SMALL_STATE(1284)] = 49391, + [SMALL_STATE(1285)] = 49447, + [SMALL_STATE(1286)] = 49519, + [SMALL_STATE(1287)] = 49591, + [SMALL_STATE(1288)] = 49647, + [SMALL_STATE(1289)] = 49719, + [SMALL_STATE(1290)] = 49791, + [SMALL_STATE(1291)] = 49863, + [SMALL_STATE(1292)] = 49935, + [SMALL_STATE(1293)] = 49989, + [SMALL_STATE(1294)] = 50061, + [SMALL_STATE(1295)] = 50133, + [SMALL_STATE(1296)] = 50189, + [SMALL_STATE(1297)] = 50261, + [SMALL_STATE(1298)] = 50317, + [SMALL_STATE(1299)] = 50373, + [SMALL_STATE(1300)] = 50445, + [SMALL_STATE(1301)] = 50517, + [SMALL_STATE(1302)] = 50587, + [SMALL_STATE(1303)] = 50659, + [SMALL_STATE(1304)] = 50731, + [SMALL_STATE(1305)] = 50803, + [SMALL_STATE(1306)] = 50875, + [SMALL_STATE(1307)] = 50931, + [SMALL_STATE(1308)] = 51003, + [SMALL_STATE(1309)] = 51063, + [SMALL_STATE(1310)] = 51119, + [SMALL_STATE(1311)] = 51189, + [SMALL_STATE(1312)] = 51261, + [SMALL_STATE(1313)] = 51333, + [SMALL_STATE(1314)] = 51405, + [SMALL_STATE(1315)] = 51467, + [SMALL_STATE(1316)] = 51537, + [SMALL_STATE(1317)] = 51607, + [SMALL_STATE(1318)] = 51663, + [SMALL_STATE(1319)] = 51733, + [SMALL_STATE(1320)] = 51797, + [SMALL_STATE(1321)] = 51869, + [SMALL_STATE(1322)] = 51935, + [SMALL_STATE(1323)] = 52001, + [SMALL_STATE(1324)] = 52069, + [SMALL_STATE(1325)] = 52139, + [SMALL_STATE(1326)] = 52195, + [SMALL_STATE(1327)] = 52251, + [SMALL_STATE(1328)] = 52323, + [SMALL_STATE(1329)] = 52393, + [SMALL_STATE(1330)] = 52449, + [SMALL_STATE(1331)] = 52501, + [SMALL_STATE(1332)] = 52573, + [SMALL_STATE(1333)] = 52645, + [SMALL_STATE(1334)] = 52701, + [SMALL_STATE(1335)] = 52757, + [SMALL_STATE(1336)] = 52831, + [SMALL_STATE(1337)] = 52887, + [SMALL_STATE(1338)] = 52959, + [SMALL_STATE(1339)] = 53031, + [SMALL_STATE(1340)] = 53087, + [SMALL_STATE(1341)] = 53143, + [SMALL_STATE(1342)] = 53215, + [SMALL_STATE(1343)] = 53287, + [SMALL_STATE(1344)] = 53343, + [SMALL_STATE(1345)] = 53399, + [SMALL_STATE(1346)] = 53471, + [SMALL_STATE(1347)] = 53527, + [SMALL_STATE(1348)] = 53599, + [SMALL_STATE(1349)] = 53671, + [SMALL_STATE(1350)] = 53743, + [SMALL_STATE(1351)] = 53815, + [SMALL_STATE(1352)] = 53885, + [SMALL_STATE(1353)] = 53957, + [SMALL_STATE(1354)] = 54029, + [SMALL_STATE(1355)] = 54098, + [SMALL_STATE(1356)] = 54151, + [SMALL_STATE(1357)] = 54220, + [SMALL_STATE(1358)] = 54289, + [SMALL_STATE(1359)] = 54358, + [SMALL_STATE(1360)] = 54427, + [SMALL_STATE(1361)] = 54496, + [SMALL_STATE(1362)] = 54565, + [SMALL_STATE(1363)] = 54618, + [SMALL_STATE(1364)] = 54687, + [SMALL_STATE(1365)] = 54722, + [SMALL_STATE(1366)] = 54791, + [SMALL_STATE(1367)] = 54860, + [SMALL_STATE(1368)] = 54929, + [SMALL_STATE(1369)] = 54964, + [SMALL_STATE(1370)] = 55017, + [SMALL_STATE(1371)] = 55086, + [SMALL_STATE(1372)] = 55155, + [SMALL_STATE(1373)] = 55224, + [SMALL_STATE(1374)] = 55277, + [SMALL_STATE(1375)] = 55346, + [SMALL_STATE(1376)] = 55399, + [SMALL_STATE(1377)] = 55468, + [SMALL_STATE(1378)] = 55537, + [SMALL_STATE(1379)] = 55606, + [SMALL_STATE(1380)] = 55675, + [SMALL_STATE(1381)] = 55744, + [SMALL_STATE(1382)] = 55813, + [SMALL_STATE(1383)] = 55882, + [SMALL_STATE(1384)] = 55921, + [SMALL_STATE(1385)] = 55990, + [SMALL_STATE(1386)] = 56043, + [SMALL_STATE(1387)] = 56085, + [SMALL_STATE(1388)] = 56151, + [SMALL_STATE(1389)] = 56187, + [SMALL_STATE(1390)] = 56231, + [SMALL_STATE(1391)] = 56267, + [SMALL_STATE(1392)] = 56303, + [SMALL_STATE(1393)] = 56339, + [SMALL_STATE(1394)] = 56388, + [SMALL_STATE(1395)] = 56435, + [SMALL_STATE(1396)] = 56482, + [SMALL_STATE(1397)] = 56529, + [SMALL_STATE(1398)] = 56576, + [SMALL_STATE(1399)] = 56623, + [SMALL_STATE(1400)] = 56670, + [SMALL_STATE(1401)] = 56714, + [SMALL_STATE(1402)] = 56768, + [SMALL_STATE(1403)] = 56802, + [SMALL_STATE(1404)] = 56840, + [SMALL_STATE(1405)] = 56884, + [SMALL_STATE(1406)] = 56938, + [SMALL_STATE(1407)] = 56982, + [SMALL_STATE(1408)] = 57026, + [SMALL_STATE(1409)] = 57062, + [SMALL_STATE(1410)] = 57116, + [SMALL_STATE(1411)] = 57170, + [SMALL_STATE(1412)] = 57214, + [SMALL_STATE(1413)] = 57268, + [SMALL_STATE(1414)] = 57312, + [SMALL_STATE(1415)] = 57345, + [SMALL_STATE(1416)] = 57400, + [SMALL_STATE(1417)] = 57451, + [SMALL_STATE(1418)] = 57502, + [SMALL_STATE(1419)] = 57545, + [SMALL_STATE(1420)] = 57588, + [SMALL_STATE(1421)] = 57639, + [SMALL_STATE(1422)] = 57690, + [SMALL_STATE(1423)] = 57741, + [SMALL_STATE(1424)] = 57792, + [SMALL_STATE(1425)] = 57847, + [SMALL_STATE(1426)] = 57898, + [SMALL_STATE(1427)] = 57949, + [SMALL_STATE(1428)] = 58004, + [SMALL_STATE(1429)] = 58055, + [SMALL_STATE(1430)] = 58106, + [SMALL_STATE(1431)] = 58157, + [SMALL_STATE(1432)] = 58208, + [SMALL_STATE(1433)] = 58259, + [SMALL_STATE(1434)] = 58302, + [SMALL_STATE(1435)] = 58342, + [SMALL_STATE(1436)] = 58386, + [SMALL_STATE(1437)] = 58426, + [SMALL_STATE(1438)] = 58466, + [SMALL_STATE(1439)] = 58506, + [SMALL_STATE(1440)] = 58546, + [SMALL_STATE(1441)] = 58586, + [SMALL_STATE(1442)] = 58626, + [SMALL_STATE(1443)] = 58666, + [SMALL_STATE(1444)] = 58714, + [SMALL_STATE(1445)] = 58754, + [SMALL_STATE(1446)] = 58786, + [SMALL_STATE(1447)] = 58826, + [SMALL_STATE(1448)] = 58866, + [SMALL_STATE(1449)] = 58906, + [SMALL_STATE(1450)] = 58946, + [SMALL_STATE(1451)] = 58974, + [SMALL_STATE(1452)] = 59014, + [SMALL_STATE(1453)] = 59054, + [SMALL_STATE(1454)] = 59086, + [SMALL_STATE(1455)] = 59126, + [SMALL_STATE(1456)] = 59166, + [SMALL_STATE(1457)] = 59206, + [SMALL_STATE(1458)] = 59238, + [SMALL_STATE(1459)] = 59278, + [SMALL_STATE(1460)] = 59318, + [SMALL_STATE(1461)] = 59352, + [SMALL_STATE(1462)] = 59388, + [SMALL_STATE(1463)] = 59416, + [SMALL_STATE(1464)] = 59456, + [SMALL_STATE(1465)] = 59498, + [SMALL_STATE(1466)] = 59538, + [SMALL_STATE(1467)] = 59584, + [SMALL_STATE(1468)] = 59630, + [SMALL_STATE(1469)] = 59678, + [SMALL_STATE(1470)] = 59706, + [SMALL_STATE(1471)] = 59738, + [SMALL_STATE(1472)] = 59766, + [SMALL_STATE(1473)] = 59798, + [SMALL_STATE(1474)] = 59848, + [SMALL_STATE(1475)] = 59876, + [SMALL_STATE(1476)] = 59904, + [SMALL_STATE(1477)] = 59944, + [SMALL_STATE(1478)] = 59984, + [SMALL_STATE(1479)] = 60024, + [SMALL_STATE(1480)] = 60064, + [SMALL_STATE(1481)] = 60104, + [SMALL_STATE(1482)] = 60144, + [SMALL_STATE(1483)] = 60184, + [SMALL_STATE(1484)] = 60224, + [SMALL_STATE(1485)] = 60264, + [SMALL_STATE(1486)] = 60304, + [SMALL_STATE(1487)] = 60344, + [SMALL_STATE(1488)] = 60384, + [SMALL_STATE(1489)] = 60424, + [SMALL_STATE(1490)] = 60464, + [SMALL_STATE(1491)] = 60504, + [SMALL_STATE(1492)] = 60544, + [SMALL_STATE(1493)] = 60584, + [SMALL_STATE(1494)] = 60624, + [SMALL_STATE(1495)] = 60664, + [SMALL_STATE(1496)] = 60704, + [SMALL_STATE(1497)] = 60749, + [SMALL_STATE(1498)] = 60792, + [SMALL_STATE(1499)] = 60823, + [SMALL_STATE(1500)] = 60868, + [SMALL_STATE(1501)] = 60913, + [SMALL_STATE(1502)] = 60958, + [SMALL_STATE(1503)] = 60985, + [SMALL_STATE(1504)] = 61030, + [SMALL_STATE(1505)] = 61061, + [SMALL_STATE(1506)] = 61096, + [SMALL_STATE(1507)] = 61141, + [SMALL_STATE(1508)] = 61172, + [SMALL_STATE(1509)] = 61203, + [SMALL_STATE(1510)] = 61230, + [SMALL_STATE(1511)] = 61257, + [SMALL_STATE(1512)] = 61284, + [SMALL_STATE(1513)] = 61327, + [SMALL_STATE(1514)] = 61372, + [SMALL_STATE(1515)] = 61403, + [SMALL_STATE(1516)] = 61434, + [SMALL_STATE(1517)] = 61461, + [SMALL_STATE(1518)] = 61494, + [SMALL_STATE(1519)] = 61525, + [SMALL_STATE(1520)] = 61570, + [SMALL_STATE(1521)] = 61615, + [SMALL_STATE(1522)] = 61660, + [SMALL_STATE(1523)] = 61709, + [SMALL_STATE(1524)] = 61752, + [SMALL_STATE(1525)] = 61779, + [SMALL_STATE(1526)] = 61808, + [SMALL_STATE(1527)] = 61835, + [SMALL_STATE(1528)] = 61880, + [SMALL_STATE(1529)] = 61923, + [SMALL_STATE(1530)] = 61964, + [SMALL_STATE(1531)] = 62003, + [SMALL_STATE(1532)] = 62030, + [SMALL_STATE(1533)] = 62067, + [SMALL_STATE(1534)] = 62112, + [SMALL_STATE(1535)] = 62157, + [SMALL_STATE(1536)] = 62192, + [SMALL_STATE(1537)] = 62225, + [SMALL_STATE(1538)] = 62256, + [SMALL_STATE(1539)] = 62301, + [SMALL_STATE(1540)] = 62346, + [SMALL_STATE(1541)] = 62377, + [SMALL_STATE(1542)] = 62420, + [SMALL_STATE(1543)] = 62465, + [SMALL_STATE(1544)] = 62508, + [SMALL_STATE(1545)] = 62553, + [SMALL_STATE(1546)] = 62602, + [SMALL_STATE(1547)] = 62629, + [SMALL_STATE(1548)] = 62656, + [SMALL_STATE(1549)] = 62696, + [SMALL_STATE(1550)] = 62736, + [SMALL_STATE(1551)] = 62776, + [SMALL_STATE(1552)] = 62816, + [SMALL_STATE(1553)] = 62860, + [SMALL_STATE(1554)] = 62900, + [SMALL_STATE(1555)] = 62940, + [SMALL_STATE(1556)] = 62980, + [SMALL_STATE(1557)] = 63015, + [SMALL_STATE(1558)] = 63056, + [SMALL_STATE(1559)] = 63097, + [SMALL_STATE(1560)] = 63138, + [SMALL_STATE(1561)] = 63179, + [SMALL_STATE(1562)] = 63220, + [SMALL_STATE(1563)] = 63261, + [SMALL_STATE(1564)] = 63302, + [SMALL_STATE(1565)] = 63343, + [SMALL_STATE(1566)] = 63384, + [SMALL_STATE(1567)] = 63425, + [SMALL_STATE(1568)] = 63465, + [SMALL_STATE(1569)] = 63503, + [SMALL_STATE(1570)] = 63537, + [SMALL_STATE(1571)] = 63575, + [SMALL_STATE(1572)] = 63604, + [SMALL_STATE(1573)] = 63645, + [SMALL_STATE(1574)] = 63674, + [SMALL_STATE(1575)] = 63715, + [SMALL_STATE(1576)] = 63744, + [SMALL_STATE(1577)] = 63785, + [SMALL_STATE(1578)] = 63826, + [SMALL_STATE(1579)] = 63855, + [SMALL_STATE(1580)] = 63894, + [SMALL_STATE(1581)] = 63931, + [SMALL_STATE(1582)] = 63957, + [SMALL_STATE(1583)] = 63994, + [SMALL_STATE(1584)] = 64031, + [SMALL_STATE(1585)] = 64068, + [SMALL_STATE(1586)] = 64105, + [SMALL_STATE(1587)] = 64134, + [SMALL_STATE(1588)] = 64155, + [SMALL_STATE(1589)] = 64184, + [SMALL_STATE(1590)] = 64205, + [SMALL_STATE(1591)] = 64238, + [SMALL_STATE(1592)] = 64275, + [SMALL_STATE(1593)] = 64312, + [SMALL_STATE(1594)] = 64333, + [SMALL_STATE(1595)] = 64358, + [SMALL_STATE(1596)] = 64387, + [SMALL_STATE(1597)] = 64424, + [SMALL_STATE(1598)] = 64461, + [SMALL_STATE(1599)] = 64498, + [SMALL_STATE(1600)] = 64535, + [SMALL_STATE(1601)] = 64564, + [SMALL_STATE(1602)] = 64601, + [SMALL_STATE(1603)] = 64634, + [SMALL_STATE(1604)] = 64671, + [SMALL_STATE(1605)] = 64708, + [SMALL_STATE(1606)] = 64744, + [SMALL_STATE(1607)] = 64768, + [SMALL_STATE(1608)] = 64797, + [SMALL_STATE(1609)] = 64824, + [SMALL_STATE(1610)] = 64853, + [SMALL_STATE(1611)] = 64880, + [SMALL_STATE(1612)] = 64911, + [SMALL_STATE(1613)] = 64940, + [SMALL_STATE(1614)] = 64973, + [SMALL_STATE(1615)] = 65002, + [SMALL_STATE(1616)] = 65029, + [SMALL_STATE(1617)] = 65058, + [SMALL_STATE(1618)] = 65091, + [SMALL_STATE(1619)] = 65120, + [SMALL_STATE(1620)] = 65153, + [SMALL_STATE(1621)] = 65182, + [SMALL_STATE(1622)] = 65211, + [SMALL_STATE(1623)] = 65242, + [SMALL_STATE(1624)] = 65267, + [SMALL_STATE(1625)] = 65296, + [SMALL_STATE(1626)] = 65327, + [SMALL_STATE(1627)] = 65354, + [SMALL_STATE(1628)] = 65383, + [SMALL_STATE(1629)] = 65408, + [SMALL_STATE(1630)] = 65432, + [SMALL_STATE(1631)] = 65450, + [SMALL_STATE(1632)] = 65480, + [SMALL_STATE(1633)] = 65512, + [SMALL_STATE(1634)] = 65538, + [SMALL_STATE(1635)] = 65570, + [SMALL_STATE(1636)] = 65588, + [SMALL_STATE(1637)] = 65612, + [SMALL_STATE(1638)] = 65630, + [SMALL_STATE(1639)] = 65648, + [SMALL_STATE(1640)] = 65680, + [SMALL_STATE(1641)] = 65712, + [SMALL_STATE(1642)] = 65738, + [SMALL_STATE(1643)] = 65760, + [SMALL_STATE(1644)] = 65786, + [SMALL_STATE(1645)] = 65804, + [SMALL_STATE(1646)] = 65822, + [SMALL_STATE(1647)] = 65854, + [SMALL_STATE(1648)] = 65872, + [SMALL_STATE(1649)] = 65898, + [SMALL_STATE(1650)] = 65919, + [SMALL_STATE(1651)] = 65948, + [SMALL_STATE(1652)] = 65967, + [SMALL_STATE(1653)] = 65996, + [SMALL_STATE(1654)] = 66017, + [SMALL_STATE(1655)] = 66046, + [SMALL_STATE(1656)] = 66071, + [SMALL_STATE(1657)] = 66096, + [SMALL_STATE(1658)] = 66117, + [SMALL_STATE(1659)] = 66146, + [SMALL_STATE(1660)] = 66167, + [SMALL_STATE(1661)] = 66188, + [SMALL_STATE(1662)] = 66217, + [SMALL_STATE(1663)] = 66238, + [SMALL_STATE(1664)] = 66267, + [SMALL_STATE(1665)] = 66296, + [SMALL_STATE(1666)] = 66317, + [SMALL_STATE(1667)] = 66346, + [SMALL_STATE(1668)] = 66375, + [SMALL_STATE(1669)] = 66396, + [SMALL_STATE(1670)] = 66425, + [SMALL_STATE(1671)] = 66446, + [SMALL_STATE(1672)] = 66467, + [SMALL_STATE(1673)] = 66488, + [SMALL_STATE(1674)] = 66514, + [SMALL_STATE(1675)] = 66530, + [SMALL_STATE(1676)] = 66546, + [SMALL_STATE(1677)] = 66568, + [SMALL_STATE(1678)] = 66586, + [SMALL_STATE(1679)] = 66612, + [SMALL_STATE(1680)] = 66632, + [SMALL_STATE(1681)] = 66658, + [SMALL_STATE(1682)] = 66674, + [SMALL_STATE(1683)] = 66700, + [SMALL_STATE(1684)] = 66726, + [SMALL_STATE(1685)] = 66742, + [SMALL_STATE(1686)] = 66768, + [SMALL_STATE(1687)] = 66784, + [SMALL_STATE(1688)] = 66810, + [SMALL_STATE(1689)] = 66834, + [SMALL_STATE(1690)] = 66860, + [SMALL_STATE(1691)] = 66886, + [SMALL_STATE(1692)] = 66912, + [SMALL_STATE(1693)] = 66932, + [SMALL_STATE(1694)] = 66958, + [SMALL_STATE(1695)] = 66984, + [SMALL_STATE(1696)] = 67010, + [SMALL_STATE(1697)] = 67034, + [SMALL_STATE(1698)] = 67060, + [SMALL_STATE(1699)] = 67086, + [SMALL_STATE(1700)] = 67112, + [SMALL_STATE(1701)] = 67136, + [SMALL_STATE(1702)] = 67162, + [SMALL_STATE(1703)] = 67178, + [SMALL_STATE(1704)] = 67204, + [SMALL_STATE(1705)] = 67230, + [SMALL_STATE(1706)] = 67246, + [SMALL_STATE(1707)] = 67262, + [SMALL_STATE(1708)] = 67286, + [SMALL_STATE(1709)] = 67310, + [SMALL_STATE(1710)] = 67336, + [SMALL_STATE(1711)] = 67352, + [SMALL_STATE(1712)] = 67378, + [SMALL_STATE(1713)] = 67398, + [SMALL_STATE(1714)] = 67422, + [SMALL_STATE(1715)] = 67445, + [SMALL_STATE(1716)] = 67462, + [SMALL_STATE(1717)] = 67485, + [SMALL_STATE(1718)] = 67500, + [SMALL_STATE(1719)] = 67523, + [SMALL_STATE(1720)] = 67538, + [SMALL_STATE(1721)] = 67553, + [SMALL_STATE(1722)] = 67568, + [SMALL_STATE(1723)] = 67587, + [SMALL_STATE(1724)] = 67610, + [SMALL_STATE(1725)] = 67633, + [SMALL_STATE(1726)] = 67658, + [SMALL_STATE(1727)] = 67675, + [SMALL_STATE(1728)] = 67690, + [SMALL_STATE(1729)] = 67705, + [SMALL_STATE(1730)] = 67728, + [SMALL_STATE(1731)] = 67751, + [SMALL_STATE(1732)] = 67766, + [SMALL_STATE(1733)] = 67781, + [SMALL_STATE(1734)] = 67796, + [SMALL_STATE(1735)] = 67815, + [SMALL_STATE(1736)] = 67832, + [SMALL_STATE(1737)] = 67847, + [SMALL_STATE(1738)] = 67864, + [SMALL_STATE(1739)] = 67882, + [SMALL_STATE(1740)] = 67896, + [SMALL_STATE(1741)] = 67916, + [SMALL_STATE(1742)] = 67934, + [SMALL_STATE(1743)] = 67948, + [SMALL_STATE(1744)] = 67966, + [SMALL_STATE(1745)] = 67984, + [SMALL_STATE(1746)] = 68004, + [SMALL_STATE(1747)] = 68020, + [SMALL_STATE(1748)] = 68040, + [SMALL_STATE(1749)] = 68056, + [SMALL_STATE(1750)] = 68072, + [SMALL_STATE(1751)] = 68090, + [SMALL_STATE(1752)] = 68108, + [SMALL_STATE(1753)] = 68128, + [SMALL_STATE(1754)] = 68148, + [SMALL_STATE(1755)] = 68168, + [SMALL_STATE(1756)] = 68186, + [SMALL_STATE(1757)] = 68206, + [SMALL_STATE(1758)] = 68226, + [SMALL_STATE(1759)] = 68240, + [SMALL_STATE(1760)] = 68256, + [SMALL_STATE(1761)] = 68276, + [SMALL_STATE(1762)] = 68290, + [SMALL_STATE(1763)] = 68304, + [SMALL_STATE(1764)] = 68324, + [SMALL_STATE(1765)] = 68338, + [SMALL_STATE(1766)] = 68352, + [SMALL_STATE(1767)] = 68366, + [SMALL_STATE(1768)] = 68386, + [SMALL_STATE(1769)] = 68400, + [SMALL_STATE(1770)] = 68420, + [SMALL_STATE(1771)] = 68434, + [SMALL_STATE(1772)] = 68452, + [SMALL_STATE(1773)] = 68472, + [SMALL_STATE(1774)] = 68492, + [SMALL_STATE(1775)] = 68508, + [SMALL_STATE(1776)] = 68524, + [SMALL_STATE(1777)] = 68538, + [SMALL_STATE(1778)] = 68552, + [SMALL_STATE(1779)] = 68566, + [SMALL_STATE(1780)] = 68580, + [SMALL_STATE(1781)] = 68594, + [SMALL_STATE(1782)] = 68608, + [SMALL_STATE(1783)] = 68628, + [SMALL_STATE(1784)] = 68639, + [SMALL_STATE(1785)] = 68656, + [SMALL_STATE(1786)] = 68667, + [SMALL_STATE(1787)] = 68678, + [SMALL_STATE(1788)] = 68693, + [SMALL_STATE(1789)] = 68704, + [SMALL_STATE(1790)] = 68715, + [SMALL_STATE(1791)] = 68734, + [SMALL_STATE(1792)] = 68745, + [SMALL_STATE(1793)] = 68756, + [SMALL_STATE(1794)] = 68775, + [SMALL_STATE(1795)] = 68786, + [SMALL_STATE(1796)] = 68805, + [SMALL_STATE(1797)] = 68816, + [SMALL_STATE(1798)] = 68827, + [SMALL_STATE(1799)] = 68838, + [SMALL_STATE(1800)] = 68849, + [SMALL_STATE(1801)] = 68866, + [SMALL_STATE(1802)] = 68877, + [SMALL_STATE(1803)] = 68890, + [SMALL_STATE(1804)] = 68905, + [SMALL_STATE(1805)] = 68921, + [SMALL_STATE(1806)] = 68935, + [SMALL_STATE(1807)] = 68949, + [SMALL_STATE(1808)] = 68965, + [SMALL_STATE(1809)] = 68981, + [SMALL_STATE(1810)] = 68997, + [SMALL_STATE(1811)] = 69011, + [SMALL_STATE(1812)] = 69025, + [SMALL_STATE(1813)] = 69039, + [SMALL_STATE(1814)] = 69053, + [SMALL_STATE(1815)] = 69067, + [SMALL_STATE(1816)] = 69081, + [SMALL_STATE(1817)] = 69095, + [SMALL_STATE(1818)] = 69109, + [SMALL_STATE(1819)] = 69123, + [SMALL_STATE(1820)] = 69139, + [SMALL_STATE(1821)] = 69153, + [SMALL_STATE(1822)] = 69167, + [SMALL_STATE(1823)] = 69183, + [SMALL_STATE(1824)] = 69197, + [SMALL_STATE(1825)] = 69211, + [SMALL_STATE(1826)] = 69225, + [SMALL_STATE(1827)] = 69241, + [SMALL_STATE(1828)] = 69255, + [SMALL_STATE(1829)] = 69271, + [SMALL_STATE(1830)] = 69281, + [SMALL_STATE(1831)] = 69295, + [SMALL_STATE(1832)] = 69309, + [SMALL_STATE(1833)] = 69325, + [SMALL_STATE(1834)] = 69335, + [SMALL_STATE(1835)] = 69349, + [SMALL_STATE(1836)] = 69365, + [SMALL_STATE(1837)] = 69379, + [SMALL_STATE(1838)] = 69393, + [SMALL_STATE(1839)] = 69407, + [SMALL_STATE(1840)] = 69421, + [SMALL_STATE(1841)] = 69437, + [SMALL_STATE(1842)] = 69451, + [SMALL_STATE(1843)] = 69465, + [SMALL_STATE(1844)] = 69479, + [SMALL_STATE(1845)] = 69489, + [SMALL_STATE(1846)] = 69503, + [SMALL_STATE(1847)] = 69519, + [SMALL_STATE(1848)] = 69535, + [SMALL_STATE(1849)] = 69549, + [SMALL_STATE(1850)] = 69563, + [SMALL_STATE(1851)] = 69579, + [SMALL_STATE(1852)] = 69593, + [SMALL_STATE(1853)] = 69609, + [SMALL_STATE(1854)] = 69623, + [SMALL_STATE(1855)] = 69637, + [SMALL_STATE(1856)] = 69651, + [SMALL_STATE(1857)] = 69665, + [SMALL_STATE(1858)] = 69679, + [SMALL_STATE(1859)] = 69693, + [SMALL_STATE(1860)] = 69707, + [SMALL_STATE(1861)] = 69723, + [SMALL_STATE(1862)] = 69739, + [SMALL_STATE(1863)] = 69755, + [SMALL_STATE(1864)] = 69769, + [SMALL_STATE(1865)] = 69783, + [SMALL_STATE(1866)] = 69797, + [SMALL_STATE(1867)] = 69813, + [SMALL_STATE(1868)] = 69827, + [SMALL_STATE(1869)] = 69841, + [SMALL_STATE(1870)] = 69857, + [SMALL_STATE(1871)] = 69871, + [SMALL_STATE(1872)] = 69885, + [SMALL_STATE(1873)] = 69901, + [SMALL_STATE(1874)] = 69917, + [SMALL_STATE(1875)] = 69931, + [SMALL_STATE(1876)] = 69945, + [SMALL_STATE(1877)] = 69959, + [SMALL_STATE(1878)] = 69975, + [SMALL_STATE(1879)] = 69989, + [SMALL_STATE(1880)] = 70002, + [SMALL_STATE(1881)] = 70015, + [SMALL_STATE(1882)] = 70028, + [SMALL_STATE(1883)] = 70041, + [SMALL_STATE(1884)] = 70054, + [SMALL_STATE(1885)] = 70067, + [SMALL_STATE(1886)] = 70080, + [SMALL_STATE(1887)] = 70093, + [SMALL_STATE(1888)] = 70106, + [SMALL_STATE(1889)] = 70119, + [SMALL_STATE(1890)] = 70132, + [SMALL_STATE(1891)] = 70145, + [SMALL_STATE(1892)] = 70158, + [SMALL_STATE(1893)] = 70171, + [SMALL_STATE(1894)] = 70184, + [SMALL_STATE(1895)] = 70197, + [SMALL_STATE(1896)] = 70210, + [SMALL_STATE(1897)] = 70223, + [SMALL_STATE(1898)] = 70236, + [SMALL_STATE(1899)] = 70249, + [SMALL_STATE(1900)] = 70262, + [SMALL_STATE(1901)] = 70275, + [SMALL_STATE(1902)] = 70288, + [SMALL_STATE(1903)] = 70301, + [SMALL_STATE(1904)] = 70314, + [SMALL_STATE(1905)] = 70327, + [SMALL_STATE(1906)] = 70336, + [SMALL_STATE(1907)] = 70349, + [SMALL_STATE(1908)] = 70362, + [SMALL_STATE(1909)] = 70375, + [SMALL_STATE(1910)] = 70388, + [SMALL_STATE(1911)] = 70401, + [SMALL_STATE(1912)] = 70414, + [SMALL_STATE(1913)] = 70427, + [SMALL_STATE(1914)] = 70440, + [SMALL_STATE(1915)] = 70453, + [SMALL_STATE(1916)] = 70466, + [SMALL_STATE(1917)] = 70479, + [SMALL_STATE(1918)] = 70492, + [SMALL_STATE(1919)] = 70505, + [SMALL_STATE(1920)] = 70518, + [SMALL_STATE(1921)] = 70531, + [SMALL_STATE(1922)] = 70544, + [SMALL_STATE(1923)] = 70557, + [SMALL_STATE(1924)] = 70570, + [SMALL_STATE(1925)] = 70583, + [SMALL_STATE(1926)] = 70596, + [SMALL_STATE(1927)] = 70609, + [SMALL_STATE(1928)] = 70622, + [SMALL_STATE(1929)] = 70635, + [SMALL_STATE(1930)] = 70648, + [SMALL_STATE(1931)] = 70661, + [SMALL_STATE(1932)] = 70674, + [SMALL_STATE(1933)] = 70687, + [SMALL_STATE(1934)] = 70696, + [SMALL_STATE(1935)] = 70709, + [SMALL_STATE(1936)] = 70722, + [SMALL_STATE(1937)] = 70731, + [SMALL_STATE(1938)] = 70744, + [SMALL_STATE(1939)] = 70757, + [SMALL_STATE(1940)] = 70770, + [SMALL_STATE(1941)] = 70783, + [SMALL_STATE(1942)] = 70796, + [SMALL_STATE(1943)] = 70809, + [SMALL_STATE(1944)] = 70822, + [SMALL_STATE(1945)] = 70835, + [SMALL_STATE(1946)] = 70848, + [SMALL_STATE(1947)] = 70861, + [SMALL_STATE(1948)] = 70874, + [SMALL_STATE(1949)] = 70887, + [SMALL_STATE(1950)] = 70900, + [SMALL_STATE(1951)] = 70913, + [SMALL_STATE(1952)] = 70922, + [SMALL_STATE(1953)] = 70931, + [SMALL_STATE(1954)] = 70944, + [SMALL_STATE(1955)] = 70957, + [SMALL_STATE(1956)] = 70968, + [SMALL_STATE(1957)] = 70981, + [SMALL_STATE(1958)] = 70994, + [SMALL_STATE(1959)] = 71003, + [SMALL_STATE(1960)] = 71016, + [SMALL_STATE(1961)] = 71029, + [SMALL_STATE(1962)] = 71042, + [SMALL_STATE(1963)] = 71055, + [SMALL_STATE(1964)] = 71068, + [SMALL_STATE(1965)] = 71081, + [SMALL_STATE(1966)] = 71094, + [SMALL_STATE(1967)] = 71107, + [SMALL_STATE(1968)] = 71120, + [SMALL_STATE(1969)] = 71133, + [SMALL_STATE(1970)] = 71146, + [SMALL_STATE(1971)] = 71159, + [SMALL_STATE(1972)] = 71170, + [SMALL_STATE(1973)] = 71183, + [SMALL_STATE(1974)] = 71194, + [SMALL_STATE(1975)] = 71203, + [SMALL_STATE(1976)] = 71212, + [SMALL_STATE(1977)] = 71225, + [SMALL_STATE(1978)] = 71238, + [SMALL_STATE(1979)] = 71251, + [SMALL_STATE(1980)] = 71264, + [SMALL_STATE(1981)] = 71277, + [SMALL_STATE(1982)] = 71290, + [SMALL_STATE(1983)] = 71303, + [SMALL_STATE(1984)] = 71316, + [SMALL_STATE(1985)] = 71329, + [SMALL_STATE(1986)] = 71342, + [SMALL_STATE(1987)] = 71355, + [SMALL_STATE(1988)] = 71368, + [SMALL_STATE(1989)] = 71381, + [SMALL_STATE(1990)] = 71394, + [SMALL_STATE(1991)] = 71407, + [SMALL_STATE(1992)] = 71420, + [SMALL_STATE(1993)] = 71433, + [SMALL_STATE(1994)] = 71446, + [SMALL_STATE(1995)] = 71457, + [SMALL_STATE(1996)] = 71470, + [SMALL_STATE(1997)] = 71483, + [SMALL_STATE(1998)] = 71496, + [SMALL_STATE(1999)] = 71509, + [SMALL_STATE(2000)] = 71522, + [SMALL_STATE(2001)] = 71535, + [SMALL_STATE(2002)] = 71548, + [SMALL_STATE(2003)] = 71561, + [SMALL_STATE(2004)] = 71574, + [SMALL_STATE(2005)] = 71587, + [SMALL_STATE(2006)] = 71600, + [SMALL_STATE(2007)] = 71613, + [SMALL_STATE(2008)] = 71626, + [SMALL_STATE(2009)] = 71639, + [SMALL_STATE(2010)] = 71652, + [SMALL_STATE(2011)] = 71665, + [SMALL_STATE(2012)] = 71678, + [SMALL_STATE(2013)] = 71691, + [SMALL_STATE(2014)] = 71700, + [SMALL_STATE(2015)] = 71713, + [SMALL_STATE(2016)] = 71726, + [SMALL_STATE(2017)] = 71739, + [SMALL_STATE(2018)] = 71750, + [SMALL_STATE(2019)] = 71763, + [SMALL_STATE(2020)] = 71772, + [SMALL_STATE(2021)] = 71783, + [SMALL_STATE(2022)] = 71792, + [SMALL_STATE(2023)] = 71801, + [SMALL_STATE(2024)] = 71809, + [SMALL_STATE(2025)] = 71817, + [SMALL_STATE(2026)] = 71827, + [SMALL_STATE(2027)] = 71837, + [SMALL_STATE(2028)] = 71847, + [SMALL_STATE(2029)] = 71855, + [SMALL_STATE(2030)] = 71865, + [SMALL_STATE(2031)] = 71875, + [SMALL_STATE(2032)] = 71885, + [SMALL_STATE(2033)] = 71895, + [SMALL_STATE(2034)] = 71905, + [SMALL_STATE(2035)] = 71915, + [SMALL_STATE(2036)] = 71925, + [SMALL_STATE(2037)] = 71935, + [SMALL_STATE(2038)] = 71945, + [SMALL_STATE(2039)] = 71955, + [SMALL_STATE(2040)] = 71965, + [SMALL_STATE(2041)] = 71975, + [SMALL_STATE(2042)] = 71985, + [SMALL_STATE(2043)] = 71995, + [SMALL_STATE(2044)] = 72003, + [SMALL_STATE(2045)] = 72013, + [SMALL_STATE(2046)] = 72023, + [SMALL_STATE(2047)] = 72033, + [SMALL_STATE(2048)] = 72043, + [SMALL_STATE(2049)] = 72053, + [SMALL_STATE(2050)] = 72063, + [SMALL_STATE(2051)] = 72071, + [SMALL_STATE(2052)] = 72081, + [SMALL_STATE(2053)] = 72091, + [SMALL_STATE(2054)] = 72101, + [SMALL_STATE(2055)] = 72111, + [SMALL_STATE(2056)] = 72121, + [SMALL_STATE(2057)] = 72131, + [SMALL_STATE(2058)] = 72139, + [SMALL_STATE(2059)] = 72149, + [SMALL_STATE(2060)] = 72159, + [SMALL_STATE(2061)] = 72169, + [SMALL_STATE(2062)] = 72179, + [SMALL_STATE(2063)] = 72189, + [SMALL_STATE(2064)] = 72199, + [SMALL_STATE(2065)] = 72207, + [SMALL_STATE(2066)] = 72215, + [SMALL_STATE(2067)] = 72225, + [SMALL_STATE(2068)] = 72235, + [SMALL_STATE(2069)] = 72245, + [SMALL_STATE(2070)] = 72255, + [SMALL_STATE(2071)] = 72265, + [SMALL_STATE(2072)] = 72275, + [SMALL_STATE(2073)] = 72285, + [SMALL_STATE(2074)] = 72295, + [SMALL_STATE(2075)] = 72305, + [SMALL_STATE(2076)] = 72315, + [SMALL_STATE(2077)] = 72325, + [SMALL_STATE(2078)] = 72335, + [SMALL_STATE(2079)] = 72345, + [SMALL_STATE(2080)] = 72355, + [SMALL_STATE(2081)] = 72365, + [SMALL_STATE(2082)] = 72375, + [SMALL_STATE(2083)] = 72385, + [SMALL_STATE(2084)] = 72395, + [SMALL_STATE(2085)] = 72403, + [SMALL_STATE(2086)] = 72413, + [SMALL_STATE(2087)] = 72421, + [SMALL_STATE(2088)] = 72429, + [SMALL_STATE(2089)] = 72439, + [SMALL_STATE(2090)] = 72449, + [SMALL_STATE(2091)] = 72459, + [SMALL_STATE(2092)] = 72469, + [SMALL_STATE(2093)] = 72477, + [SMALL_STATE(2094)] = 72487, + [SMALL_STATE(2095)] = 72495, + [SMALL_STATE(2096)] = 72503, + [SMALL_STATE(2097)] = 72511, + [SMALL_STATE(2098)] = 72521, + [SMALL_STATE(2099)] = 72531, + [SMALL_STATE(2100)] = 72541, + [SMALL_STATE(2101)] = 72551, + [SMALL_STATE(2102)] = 72561, + [SMALL_STATE(2103)] = 72569, + [SMALL_STATE(2104)] = 72579, + [SMALL_STATE(2105)] = 72589, + [SMALL_STATE(2106)] = 72599, + [SMALL_STATE(2107)] = 72609, + [SMALL_STATE(2108)] = 72619, + [SMALL_STATE(2109)] = 72629, + [SMALL_STATE(2110)] = 72639, + [SMALL_STATE(2111)] = 72649, + [SMALL_STATE(2112)] = 72659, + [SMALL_STATE(2113)] = 72669, + [SMALL_STATE(2114)] = 72679, + [SMALL_STATE(2115)] = 72689, + [SMALL_STATE(2116)] = 72699, + [SMALL_STATE(2117)] = 72707, + [SMALL_STATE(2118)] = 72717, + [SMALL_STATE(2119)] = 72727, + [SMALL_STATE(2120)] = 72737, + [SMALL_STATE(2121)] = 72745, + [SMALL_STATE(2122)] = 72755, + [SMALL_STATE(2123)] = 72765, + [SMALL_STATE(2124)] = 72775, + [SMALL_STATE(2125)] = 72782, + [SMALL_STATE(2126)] = 72789, + [SMALL_STATE(2127)] = 72796, + [SMALL_STATE(2128)] = 72803, + [SMALL_STATE(2129)] = 72810, + [SMALL_STATE(2130)] = 72817, + [SMALL_STATE(2131)] = 72824, + [SMALL_STATE(2132)] = 72831, + [SMALL_STATE(2133)] = 72838, + [SMALL_STATE(2134)] = 72845, + [SMALL_STATE(2135)] = 72852, + [SMALL_STATE(2136)] = 72859, + [SMALL_STATE(2137)] = 72866, + [SMALL_STATE(2138)] = 72873, + [SMALL_STATE(2139)] = 72880, + [SMALL_STATE(2140)] = 72887, + [SMALL_STATE(2141)] = 72894, + [SMALL_STATE(2142)] = 72901, + [SMALL_STATE(2143)] = 72908, + [SMALL_STATE(2144)] = 72915, + [SMALL_STATE(2145)] = 72922, + [SMALL_STATE(2146)] = 72929, + [SMALL_STATE(2147)] = 72936, + [SMALL_STATE(2148)] = 72943, + [SMALL_STATE(2149)] = 72950, + [SMALL_STATE(2150)] = 72957, + [SMALL_STATE(2151)] = 72964, + [SMALL_STATE(2152)] = 72971, + [SMALL_STATE(2153)] = 72978, + [SMALL_STATE(2154)] = 72985, + [SMALL_STATE(2155)] = 72992, + [SMALL_STATE(2156)] = 72999, + [SMALL_STATE(2157)] = 73006, + [SMALL_STATE(2158)] = 73013, + [SMALL_STATE(2159)] = 73020, + [SMALL_STATE(2160)] = 73027, + [SMALL_STATE(2161)] = 73034, + [SMALL_STATE(2162)] = 73041, + [SMALL_STATE(2163)] = 73048, + [SMALL_STATE(2164)] = 73055, + [SMALL_STATE(2165)] = 73062, + [SMALL_STATE(2166)] = 73069, + [SMALL_STATE(2167)] = 73076, + [SMALL_STATE(2168)] = 73083, + [SMALL_STATE(2169)] = 73090, + [SMALL_STATE(2170)] = 73097, + [SMALL_STATE(2171)] = 73104, + [SMALL_STATE(2172)] = 73111, + [SMALL_STATE(2173)] = 73118, + [SMALL_STATE(2174)] = 73125, + [SMALL_STATE(2175)] = 73132, + [SMALL_STATE(2176)] = 73139, + [SMALL_STATE(2177)] = 73146, + [SMALL_STATE(2178)] = 73153, + [SMALL_STATE(2179)] = 73160, + [SMALL_STATE(2180)] = 73167, + [SMALL_STATE(2181)] = 73174, + [SMALL_STATE(2182)] = 73181, + [SMALL_STATE(2183)] = 73188, + [SMALL_STATE(2184)] = 73195, + [SMALL_STATE(2185)] = 73202, + [SMALL_STATE(2186)] = 73209, + [SMALL_STATE(2187)] = 73216, + [SMALL_STATE(2188)] = 73223, + [SMALL_STATE(2189)] = 73230, + [SMALL_STATE(2190)] = 73237, + [SMALL_STATE(2191)] = 73244, + [SMALL_STATE(2192)] = 73251, + [SMALL_STATE(2193)] = 73258, + [SMALL_STATE(2194)] = 73265, + [SMALL_STATE(2195)] = 73272, + [SMALL_STATE(2196)] = 73279, + [SMALL_STATE(2197)] = 73286, + [SMALL_STATE(2198)] = 73293, + [SMALL_STATE(2199)] = 73300, + [SMALL_STATE(2200)] = 73307, + [SMALL_STATE(2201)] = 73314, + [SMALL_STATE(2202)] = 73321, + [SMALL_STATE(2203)] = 73328, + [SMALL_STATE(2204)] = 73335, + [SMALL_STATE(2205)] = 73342, + [SMALL_STATE(2206)] = 73349, + [SMALL_STATE(2207)] = 73356, + [SMALL_STATE(2208)] = 73363, + [SMALL_STATE(2209)] = 73370, + [SMALL_STATE(2210)] = 73377, + [SMALL_STATE(2211)] = 73384, + [SMALL_STATE(2212)] = 73391, + [SMALL_STATE(2213)] = 73398, + [SMALL_STATE(2214)] = 73405, + [SMALL_STATE(2215)] = 73412, + [SMALL_STATE(2216)] = 73419, + [SMALL_STATE(2217)] = 73426, + [SMALL_STATE(2218)] = 73433, + [SMALL_STATE(2219)] = 73440, + [SMALL_STATE(2220)] = 73447, + [SMALL_STATE(2221)] = 73454, + [SMALL_STATE(2222)] = 73461, + [SMALL_STATE(2223)] = 73468, + [SMALL_STATE(2224)] = 73475, + [SMALL_STATE(2225)] = 73482, + [SMALL_STATE(2226)] = 73489, + [SMALL_STATE(2227)] = 73496, + [SMALL_STATE(2228)] = 73503, + [SMALL_STATE(2229)] = 73510, + [SMALL_STATE(2230)] = 73517, + [SMALL_STATE(2231)] = 73524, + [SMALL_STATE(2232)] = 73531, + [SMALL_STATE(2233)] = 73538, + [SMALL_STATE(2234)] = 73545, + [SMALL_STATE(2235)] = 73552, + [SMALL_STATE(2236)] = 73559, + [SMALL_STATE(2237)] = 73566, + [SMALL_STATE(2238)] = 73573, + [SMALL_STATE(2239)] = 73580, + [SMALL_STATE(2240)] = 73587, + [SMALL_STATE(2241)] = 73594, + [SMALL_STATE(2242)] = 73601, + [SMALL_STATE(2243)] = 73608, + [SMALL_STATE(2244)] = 73615, + [SMALL_STATE(2245)] = 73622, + [SMALL_STATE(2246)] = 73629, + [SMALL_STATE(2247)] = 73636, + [SMALL_STATE(2248)] = 73643, + [SMALL_STATE(2249)] = 73650, + [SMALL_STATE(2250)] = 73657, + [SMALL_STATE(2251)] = 73664, + [SMALL_STATE(2252)] = 73671, + [SMALL_STATE(2253)] = 73678, + [SMALL_STATE(2254)] = 73685, + [SMALL_STATE(2255)] = 73692, + [SMALL_STATE(2256)] = 73699, + [SMALL_STATE(2257)] = 73706, + [SMALL_STATE(2258)] = 73713, + [SMALL_STATE(2259)] = 73720, + [SMALL_STATE(2260)] = 73727, + [SMALL_STATE(2261)] = 73734, + [SMALL_STATE(2262)] = 73741, + [SMALL_STATE(2263)] = 73748, + [SMALL_STATE(2264)] = 73755, + [SMALL_STATE(2265)] = 73762, + [SMALL_STATE(2266)] = 73769, + [SMALL_STATE(2267)] = 73776, + [SMALL_STATE(2268)] = 73783, + [SMALL_STATE(2269)] = 73790, + [SMALL_STATE(2270)] = 73797, + [SMALL_STATE(2271)] = 73804, + [SMALL_STATE(2272)] = 73811, + [SMALL_STATE(2273)] = 73818, + [SMALL_STATE(2274)] = 73825, + [SMALL_STATE(2275)] = 73832, + [SMALL_STATE(2276)] = 73839, + [SMALL_STATE(2277)] = 73846, + [SMALL_STATE(2278)] = 73853, + [SMALL_STATE(2279)] = 73860, + [SMALL_STATE(2280)] = 73867, + [SMALL_STATE(2281)] = 73874, + [SMALL_STATE(2282)] = 73881, + [SMALL_STATE(2283)] = 73888, + [SMALL_STATE(2284)] = 73895, + [SMALL_STATE(2285)] = 73902, + [SMALL_STATE(2286)] = 73909, + [SMALL_STATE(2287)] = 73916, + [SMALL_STATE(2288)] = 73923, + [SMALL_STATE(2289)] = 73930, + [SMALL_STATE(2290)] = 73937, + [SMALL_STATE(2291)] = 73944, + [SMALL_STATE(2292)] = 73951, + [SMALL_STATE(2293)] = 73958, + [SMALL_STATE(2294)] = 73965, + [SMALL_STATE(2295)] = 73972, + [SMALL_STATE(2296)] = 73979, + [SMALL_STATE(2297)] = 73986, + [SMALL_STATE(2298)] = 73993, + [SMALL_STATE(2299)] = 74000, + [SMALL_STATE(2300)] = 74007, + [SMALL_STATE(2301)] = 74014, + [SMALL_STATE(2302)] = 74021, + [SMALL_STATE(2303)] = 74028, + [SMALL_STATE(2304)] = 74035, + [SMALL_STATE(2305)] = 74042, + [SMALL_STATE(2306)] = 74049, + [SMALL_STATE(2307)] = 74056, + [SMALL_STATE(2308)] = 74063, + [SMALL_STATE(2309)] = 74070, + [SMALL_STATE(2310)] = 74077, + [SMALL_STATE(2311)] = 74084, + [SMALL_STATE(2312)] = 74091, + [SMALL_STATE(2313)] = 74098, + [SMALL_STATE(2314)] = 74105, + [SMALL_STATE(2315)] = 74112, + [SMALL_STATE(2316)] = 74119, + [SMALL_STATE(2317)] = 74126, + [SMALL_STATE(2318)] = 74133, + [SMALL_STATE(2319)] = 74140, + [SMALL_STATE(2320)] = 74147, + [SMALL_STATE(2321)] = 74154, + [SMALL_STATE(2322)] = 74161, + [SMALL_STATE(2323)] = 74168, + [SMALL_STATE(2324)] = 74175, + [SMALL_STATE(2325)] = 74182, + [SMALL_STATE(2326)] = 74189, + [SMALL_STATE(2327)] = 74196, + [SMALL_STATE(2328)] = 74203, + [SMALL_STATE(2329)] = 74210, + [SMALL_STATE(2330)] = 74217, + [SMALL_STATE(2331)] = 74224, + [SMALL_STATE(2332)] = 74231, + [SMALL_STATE(2333)] = 74238, + [SMALL_STATE(2334)] = 74245, + [SMALL_STATE(2335)] = 74252, + [SMALL_STATE(2336)] = 74259, + [SMALL_STATE(2337)] = 74266, + [SMALL_STATE(2338)] = 74273, + [SMALL_STATE(2339)] = 74280, + [SMALL_STATE(2340)] = 74287, + [SMALL_STATE(2341)] = 74294, + [SMALL_STATE(2342)] = 74301, + [SMALL_STATE(2343)] = 74308, + [SMALL_STATE(2344)] = 74315, + [SMALL_STATE(2345)] = 74322, + [SMALL_STATE(2346)] = 74329, + [SMALL_STATE(2347)] = 74336, + [SMALL_STATE(2348)] = 74343, + [SMALL_STATE(2349)] = 74350, + [SMALL_STATE(2350)] = 74357, + [SMALL_STATE(2351)] = 74364, + [SMALL_STATE(2352)] = 74371, + [SMALL_STATE(2353)] = 74378, + [SMALL_STATE(2354)] = 74385, + [SMALL_STATE(2355)] = 74392, + [SMALL_STATE(2356)] = 74399, + [SMALL_STATE(2357)] = 74406, + [SMALL_STATE(2358)] = 74413, + [SMALL_STATE(2359)] = 74420, + [SMALL_STATE(2360)] = 74427, + [SMALL_STATE(2361)] = 74434, + [SMALL_STATE(2362)] = 74441, + [SMALL_STATE(2363)] = 74448, + [SMALL_STATE(2364)] = 74455, + [SMALL_STATE(2365)] = 74462, + [SMALL_STATE(2366)] = 74469, + [SMALL_STATE(2367)] = 74476, + [SMALL_STATE(2368)] = 74483, + [SMALL_STATE(2369)] = 74490, + [SMALL_STATE(2370)] = 74497, + [SMALL_STATE(2371)] = 74504, + [SMALL_STATE(2372)] = 74511, + [SMALL_STATE(2373)] = 74518, + [SMALL_STATE(2374)] = 74525, + [SMALL_STATE(2375)] = 74532, + [SMALL_STATE(2376)] = 74539, + [SMALL_STATE(2377)] = 74546, + [SMALL_STATE(2378)] = 74553, + [SMALL_STATE(2379)] = 74560, + [SMALL_STATE(2380)] = 74567, + [SMALL_STATE(2381)] = 74574, + [SMALL_STATE(2382)] = 74581, + [SMALL_STATE(2383)] = 74588, + [SMALL_STATE(2384)] = 74595, + [SMALL_STATE(2385)] = 74602, + [SMALL_STATE(2386)] = 74609, + [SMALL_STATE(2387)] = 74616, + [SMALL_STATE(2388)] = 74623, + [SMALL_STATE(2389)] = 74630, + [SMALL_STATE(2390)] = 74637, + [SMALL_STATE(2391)] = 74644, + [SMALL_STATE(2392)] = 74651, + [SMALL_STATE(2393)] = 74658, + [SMALL_STATE(2394)] = 74665, + [SMALL_STATE(2395)] = 74672, + [SMALL_STATE(2396)] = 74679, + [SMALL_STATE(2397)] = 74686, + [SMALL_STATE(2398)] = 74693, + [SMALL_STATE(2399)] = 74700, + [SMALL_STATE(2400)] = 74707, + [SMALL_STATE(2401)] = 74714, + [SMALL_STATE(2402)] = 74721, + [SMALL_STATE(2403)] = 74728, + [SMALL_STATE(2404)] = 74735, + [SMALL_STATE(2405)] = 74742, + [SMALL_STATE(2406)] = 74749, + [SMALL_STATE(2407)] = 74756, + [SMALL_STATE(2408)] = 74763, + [SMALL_STATE(2409)] = 74770, + [SMALL_STATE(2410)] = 74777, + [SMALL_STATE(2411)] = 74784, + [SMALL_STATE(2412)] = 74791, + [SMALL_STATE(2413)] = 74798, + [SMALL_STATE(2414)] = 74805, + [SMALL_STATE(2415)] = 74812, + [SMALL_STATE(2416)] = 74819, + [SMALL_STATE(2417)] = 74826, + [SMALL_STATE(2418)] = 74833, + [SMALL_STATE(2419)] = 74840, + [SMALL_STATE(2420)] = 74847, + [SMALL_STATE(2421)] = 74854, + [SMALL_STATE(2422)] = 74861, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -136057,2501 +141967,2553 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(534), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1594), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2010), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1420), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2155), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1975), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(521), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(741), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(741), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(776), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(107), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1180), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1302), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1091), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2278), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2273), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1210), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(44), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1118), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1047), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1007), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1120), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1803), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1701), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1986), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1950), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(710), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2077), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1983), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(400), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2285), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2144), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2161), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2163), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1944), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2259), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(739), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(737), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2228), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2227), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2219), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1660), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(843), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1738), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(843), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(835), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(532), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1590), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2208), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1412), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1958), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(207), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1179), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1286), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1087), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(32), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1952), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1940), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(733), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2143), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1949), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(381), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2290), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2089), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2091), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2190), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1938), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2201), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(531), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2071), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1400), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2072), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1973), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(253), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1183), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1293), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1069), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), - [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1978), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1985), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(665), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2090), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1981), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(407), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2238), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(597), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2085), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2080), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1968), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2112), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(538), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1585), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2226), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1399), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2003), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(256), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1194), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1277), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1086), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(46), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1941), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1931), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(645), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2028), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1939), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(405), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2293), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(598), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2141), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2129), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2214), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1930), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2095), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(541), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1603), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2298), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1377), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2292), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1913), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(521), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(741), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(741), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(776), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1182), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1273), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1072), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1918), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2273), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1210), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(51), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1118), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1047), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1007), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1120), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1803), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1650), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1701), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1921), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1923), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2243), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1924), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2239), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(602), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2236), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2235), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2234), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(739), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(737), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2228), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2219), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1660), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1342), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1804), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1738), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1342), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(835), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(539), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(521), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(741), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(741), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(776), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(107), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1180), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1302), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1047), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2278), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2273), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1118), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1007), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1120), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1803), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1650), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1701), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1986), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1950), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1983), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(400), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2285), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2144), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2161), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2163), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1944), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2259), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(739), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(737), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2228), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2227), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2219), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1660), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1804), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1738), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(835), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(535), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(207), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1179), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1286), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1952), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1940), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1949), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2290), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2091), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2190), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1938), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2201), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(533), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(253), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1183), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1293), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1978), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1981), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(407), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2238), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(597), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2086), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2085), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2080), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1968), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2112), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(540), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1182), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1273), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1921), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1924), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(409), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2239), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2236), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2235), - [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2234), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1976), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2107), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(256), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1194), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1277), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1941), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1931), - [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1939), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2293), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(598), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2141), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2129), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2214), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1930), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2095), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(537), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1967), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1961), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2261), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2267), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1477), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2268), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2098), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(537), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(694), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(694), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(700), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(134), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1230), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1336), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1157), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2388), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2373), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1198), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(46), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1006), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(950), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(936), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1000), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1725), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1793), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2100), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2071), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2205), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2097), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(449), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2408), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(647), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2163), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2162), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2276), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2068), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2152), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(809), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(805), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2284), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2283), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2278), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1748), + [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(884), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2017), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(884), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(882), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(564), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1649), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2327), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1448), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2299), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2051), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(210), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1234), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1287), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1171), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(44), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2072), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2062), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(788), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2329), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2070), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(448), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2413), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(624), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2245), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2250), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2306), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2059), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2312), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2179), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1454), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2180), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2033), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(272), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1241), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1340), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1152), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2037), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2099), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(711), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2372), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2039), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(404), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2360), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(623), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2365), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2364), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2188), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2088), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2203), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(565), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1660), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2348), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1436), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2328), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2123), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(319), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1240), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1343), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1165), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(30), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2063), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2052), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(782), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2135), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2061), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(441), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2416), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(648), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2320), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2318), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2333), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2049), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2282), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(572), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1665), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2421), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2415), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2026), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(537), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(694), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(700), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1221), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1346), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1169), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2388), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2034), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2373), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1198), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1006), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(950), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(936), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1000), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1980), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1725), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1793), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2044), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2048), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(790), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2332), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2053), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(503), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2313), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(620), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2308), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2304), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2181), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(809), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(805), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2284), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2283), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1748), + [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2017), + [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1804), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1388), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(882), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(561), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(537), + [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(694), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(694), + [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(700), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(134), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1230), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1336), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(950), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2388), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2373), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1006), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(936), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1000), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1725), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1793), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2100), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2071), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2097), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(449), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2408), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(647), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2163), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2162), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2276), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2068), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2152), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(809), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(805), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2284), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2283), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2278), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1748), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(884), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2017), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1804), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(884), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(882), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(563), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(210), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1234), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1287), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2072), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2062), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2070), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(448), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2413), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(624), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2245), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2250), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2306), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2059), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2312), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(319), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1240), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1343), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2063), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2052), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2061), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(441), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2416), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(648), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2320), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2318), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2333), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2049), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2282), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(272), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1241), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1340), + [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2037), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2099), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2039), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2360), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(623), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2365), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2364), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2188), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2088), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2203), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(383), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1221), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1346), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2044), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2048), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2053), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(503), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2313), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(620), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2308), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2304), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2181), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2344), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(560), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2106), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2109), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2384), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2038), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 27), [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 27), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 62), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 84), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 84), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 80), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 80), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 97), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 97), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 63), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 63), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 91), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 66), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 66), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 67), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 67), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 70), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 70), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 94), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 94), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 92), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 92), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 71), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 71), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 72), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 72), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(891), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(521), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(741), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(741), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(776), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(207), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1987), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(32), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1952), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1940), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(733), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2143), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1949), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2290), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(605), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2091), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2190), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1938), - [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2201), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(739), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(737), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2228), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2227), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2219), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1660), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(843), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1738), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(843), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(835), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(898), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(253), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1978), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1985), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(665), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2090), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1981), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(407), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2238), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(597), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2086), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2085), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2080), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1968), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2112), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(899), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(342), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1921), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(757), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2243), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(409), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2239), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2236), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2235), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2234), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1976), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2107), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(900), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(107), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(44), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1986), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1950), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(710), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2077), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1983), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(400), - [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2285), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2144), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2161), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2163), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1944), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2259), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(894), - [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(256), - [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1941), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1931), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(645), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2028), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1939), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(405), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2293), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(598), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2141), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2129), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2214), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1930), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2095), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(892), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1967), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(703), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), - [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2261), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1967] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1245), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1132), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2230), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2120), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1998), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1007), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1047), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2278), - [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2273), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1118), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1120), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1803), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1650), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1701), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2231), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2174), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1994), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 83), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 102), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2182), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1387), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1997), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2232), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1374), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2200), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1991), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(792), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1738), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 106), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 106), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 115), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 115), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 114), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 114), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 124), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 124), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 105), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 105), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 120), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 120), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 68), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 68), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 103), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 103), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1132), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1007), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1047), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2278), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1953), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2273), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1118), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1120), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1803), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1650), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1701), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(874), - [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1749), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(895), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1007), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1047), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2278), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1953), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2273), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 69), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 69), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 78), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 78), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 71), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 71), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 72), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 72), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 94), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 94), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 78), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 78), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1060), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 79), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 79), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1115), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1245), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 79), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 79), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1800), - [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1200), - [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3161] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1245), - [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2278), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2278), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2278), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2278), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(2278), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 101), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 110), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 111), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 109), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1007), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1356), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1350), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1463), - [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1473), - [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1466), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1060), - [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1469), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1461), - [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1475), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1060), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1060), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3836] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1060), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1060), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1467), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2051), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1532), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2278), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1918), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 107), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 88), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 107), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 88), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1808), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1384), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2215), - [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1913), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 88), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 108), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 108), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 107), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1808), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1625), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 108), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 108), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 108), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 108), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(675), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2185), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2278), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 94), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 94), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1713), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1659), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 71), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 71), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 72), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 72), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 108), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1616), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 112), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1718), - [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1718), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1719), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 85), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1496), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 64), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 104), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1635), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 112), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 117), - [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1557), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 64), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 98), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 85), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 113), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 122), SHIFT_REPEAT(1658), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 122), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 104), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 113), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 96), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(856), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1946), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1425), - [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(584), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1525), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 64), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1800), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 121), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(559), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 118), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1982), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1246), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 85), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 126), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 85), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 116), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 126), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 125), SHIFT_REPEAT(2158), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 125), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 116), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 123), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 90), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 118), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 72), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 94), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 72), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 71), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 72), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 72), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 71), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 94), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 94), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 94), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 71), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5321] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 94), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 71), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 71), - [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 72), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 91), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 91), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 111), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 111), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 100), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 90), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 90), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 85), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 85), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 81), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 81), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 76), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 76), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 64), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 62), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 62), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 94), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 94), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 97), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 97), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 95), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 61), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 61), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 67), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 67), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 68), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 71), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 72), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 72), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 73), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(934), + [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(537), + [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(694), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(694), + [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(700), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(319), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2101), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2063), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2052), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(782), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2135), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2061), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(441), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2416), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(648), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2320), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2318), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2333), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2049), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2282), + [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(809), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(805), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2284), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2283), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2278), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1748), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(884), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2017), + [1663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(884), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(882), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(927), + [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(383), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2048), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(790), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2332), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2053), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(503), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2313), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(620), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2308), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2304), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2181), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2344), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(935), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(210), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(44), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2072), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2062), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(788), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2329), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2070), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(448), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2413), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(624), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2245), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2250), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2306), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2059), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2312), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(925), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(272), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2037), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2099), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(711), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2372), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2039), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(404), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2360), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(623), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2365), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2364), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2188), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2088), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2203), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(923), + [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2106), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(803), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2165), + [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2109), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2384), + [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2038), + [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(938), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(134), + [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), + [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2100), + [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2071), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2205), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2097), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(449), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2408), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(647), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2163), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2276), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2068), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2152), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1971] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1333), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(989), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2352), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1456), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2117), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(936), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(950), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2388), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2074), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2373), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1006), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1000), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1980), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1725), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1793), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1444), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2288), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2108), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 105), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 84), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2298), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1438), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2228), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2093), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1437), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2317), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2104), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(827), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1804), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 124), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 120), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 119), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 129), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 108), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 125), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 88), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 109), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(936), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(950), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2388), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2074), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2373), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 106), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 69), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(989), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(936), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(950), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2388), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2074), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2373), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1006), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1000), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1980), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1725), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1793), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(904), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1809), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(926), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 70), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 96), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(962), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 80), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1333), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1038), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 80), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 78), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 72), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 79), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 79), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 73), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 97), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 79), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 79), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2388), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2388), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2388), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(2388), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 78), SHIFT(2388), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1917), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1232), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3235] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1333), + [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 77), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 77), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1368), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1364), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 103), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 83), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 102), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 104), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 116), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 114), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 115), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 63), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(936), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3809] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(962), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1518), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1514), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1498), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1515), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(962), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(962), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1508), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1507), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1540), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(962), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(962), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2307), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1594), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2388), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(2034), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 110), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 110), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 89), + [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1973), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1442), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2227), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2026), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, .dynamic_precedence = -10), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 89), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 92), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 92), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 110), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 112), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 112), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1973), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, .dynamic_precedence = -10), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 112), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1677), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 92), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 92), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, .dynamic_precedence = -10), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(789), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2292), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 112), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2388), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 75), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 89), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1766), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 73), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1833), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 72), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), + [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 97), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 92), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), + [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), + [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 98), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 74), + [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 112), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 93), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 101), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1612), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 65), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1712), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 117), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1570), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 65), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 86), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 107), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), SHIFT_REPEAT(1679), + [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 117), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), SHIFT_REPEAT(1659), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 127), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1846), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1846), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 122), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 107), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1865), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 86), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 118), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(615), + [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1455), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(2057), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 126), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 123), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(888), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1309), + [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 86), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 99), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 121), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 121), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1917), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(590), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), SHIFT_REPEAT(2323), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 130), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(2091), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1428), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 65), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 118), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 86), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 128), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 131), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 131), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, .production_id = 113), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 73), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 72), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 97), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 72), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 73), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5337] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 97), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 97), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 97), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 73), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 72), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 73), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 73), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 72), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 72), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 97), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), }; #ifdef __cplusplus